/* Minecraft-themed Landing Page Styles */

:root {
    --minecraft-green: #66BB6A;
    --minecraft-brown: #8B4513;
    --minecraft-dirt: #A0826D;
    --minecraft-grass: #7CB342;
    --minecraft-stone: #999999;
    --minecraft-dark: #2E2E2E;
    --minecraft-light: #F5F5F5;
    --minecraft-blue: #4FC3F7;
    --minecraft-red: #F44336;
    --minecraft-orange: #FF8F00;
    --warning-red: #D32F2F;
    --success-green: #388E3C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--minecraft-dark);
    background: linear-gradient(135deg, var(--minecraft-light) 0%, #E8F5E8 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.hero-section {
    background: linear-gradient(135deg, var(--minecraft-green) 0%, var(--minecraft-grass) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="10" height="10" fill="rgba(255,255,255,0.1)"/><rect x="10" y="10" width="10" height="10" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    opacity: 0.95;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content Styles */
main {
    padding: 60px 0;
}

section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid var(--minecraft-stone);
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--minecraft-green), var(--minecraft-blue), var(--minecraft-orange));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
}

h1, h2, h3, h4 {
    color: var(--minecraft-dark);
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    color: var(--minecraft-green);
    border-bottom: 3px solid var(--minecraft-green);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.8rem;
    color: var(--minecraft-brown);
    margin-bottom: 20px;
    margin-top: 30px;
}

h4 {
    font-size: 1.4rem;
    color: var(--minecraft-dirt);
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* List Styles */
ul, ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list li {
    background: var(--minecraft-light);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--minecraft-green);
    list-style: none;
    position: relative;
}

.feature-list li::before {
    content: '⚡';
    position: absolute;
    left: -15px;
    top: 15px;
    background: var(--minecraft-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Step Styles */
.step {
    background: var(--minecraft-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid var(--minecraft-green);
}

.step h3 {
    background: var(--minecraft-green);
    color: white;
    padding: 15px 20px;
    margin: -30px -30px 20px -30px;
    border-radius: 10px 10px 0 0;
    font-size: 1.6rem;
}

.step ol {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.step ol li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.step ol li:last-child {
    border-bottom: none;
}

/* Experience Notes */
.experience-note {
    background: linear-gradient(135deg, var(--minecraft-blue), #29B6F6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid white;
}

.experience-note p {
    margin-bottom: 10px;
}

.experience-note p:last-child {
    margin-bottom: 0;
}

/* Warning Styles */
.warning-section {
    border: 3px solid var(--warning-red);
    background: #FFEBEE;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.warning-box {
    background: var(--warning-red);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 600;
}

.warning-box p {
    margin: 0;
}

/* Workaround Section */
.workaround {
    background: #E8F5E8;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--success-green);
    margin: 20px 0;
}

.workaround h3 {
    color: var(--success-green);
    margin-top: 0;
}

.workaround h4 {
    color: var(--minecraft-brown);
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Final Step */
.final-step {
    background: linear-gradient(135deg, var(--minecraft-orange), #FFB74D);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.final-step h3 {
    color: white;
    margin-top: 0;
}

.final-step ol {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.final-step ol li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Lessons Learned */
.lessons-list {
    list-style: none;
    padding-left: 0;
}

.lessons-list li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid var(--minecraft-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lessons-list li strong {
    color: var(--minecraft-green);
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Success Message */
.success-message {
    text-align: center;
    background: linear-gradient(135deg, var(--success-green), var(--minecraft-grass));
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

.success-message h2 {
    color: white;
    border-bottom: 3px solid rgba(255,255,255,0.3);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--minecraft-dark);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    section {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .step {
        padding: 20px;
    }
    
    .step h3 {
        margin: -20px -20px 15px -20px;
        font-size: 1.4rem;
    }
    
    .step ol {
        padding: 20px;
    }
    
    main {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    .step {
        padding: 15px;
    }
    
    .step h3 {
        margin: -15px -15px 15px -15px;
        padding: 12px 15px;
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    p, li {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    section {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .warning-box, .experience-note, .final-step {
        background: white !important;
        color: black !important;
        border: 2px solid #333 !important;
    }
}