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

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1.7;
    color: #3b2a14;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(255, 200, 150, 0.55), transparent 60%),
        radial-gradient(900px 500px at 100% 10%, rgba(255, 170, 150, 0.45), transparent 60%),
        radial-gradient(1400px 700px at 50% 120%, rgba(255, 245, 230, 1), rgba(255, 238, 215, 0.95));
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

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

.hero-section {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    border-radius: 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 184, 120, 0.35);
    box-shadow: 0 12px 36px rgba(153, 87, 0, 0.18);
    backdrop-filter: blur(6px);
}

.hero-actions {
    margin-top: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff9a44 0%, #ff5e62 100%);
    color: #fffdfa;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    box-shadow: 0 10px 24px rgba(255, 115, 70, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 115, 70, 0.45);
}

.mentor-photo {
    margin-bottom: 30px;
}

.mentor-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 184, 120, 0.45);
    box-shadow:
        0 10px 24px rgba(153, 87, 0, 0.18),
        0 0 0 6px rgba(255, 214, 160, 0.3);
}

.mentor-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2em;
    color: #2b1a10;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.mentor-tagline {
    font-size: 1.2em;
    color: #7a4a1f;
    font-style: italic;
    margin-bottom: 8px;
}

.mentor-subtitle {
    font-size: 1.05em;
    color: #6b5230;
    max-width: 680px;
    margin: 0 auto;
}

.expandable-sections {
    margin-bottom: 40px;
}

.section-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
    border-radius: 18px;
    margin-bottom: 22px;
    box-shadow: 0 8px 28px rgba(153, 87, 0, 0.12);
    border: 1px solid rgba(255, 184, 120, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(153, 87, 0, 0.18);
    border-color: rgba(255, 184, 120, 0.55);
}

.section-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 184, 120, 0.3);
    transition: all 0.3s ease;
}

.section-header:hover {
    background: rgba(255, 225, 190, 0.2);
}

.section-header.active {
    background: rgba(255, 235, 205, 0.3);
    border-bottom-color: rgba(255, 184, 120, 0.55);
}

.section-header h2 {
    color: #2b1a10;
    font-size: 1.45em;
    font-weight: 600;
}

/* Removed expand icon visuals since sections are static */
.expand-icon { display: none; }

.section-header.active .expand-icon {
    transform: rotate(45deg);
}

.section-content {
    padding: 0 30px 28px;
    display: block;
    color: #4c341a;
    line-height: 1.9;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content ul {
    list-style: none;
    padding-left: 0;
}

.section-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.section-content li:before {
    content: "✦";
    color: #ff9a44;
    position: absolute;
    left: 0;
}

.game-card {
    position: relative;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: auto;
    overflow: visible;
    border-radius: 18px 18px 0 0;
}

.game-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.game-card:hover .game-photo {
    transform: scale(1.04);
}

.game-card .section-header {
    border-radius: 0;
}

.schedule-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 184, 120, 0.35);
    box-shadow: 0 8px 28px rgba(153, 87, 0, 0.12);
}

.schedule-section h2 {
    text-align: center;
    color: #2b1a10;
    font-size: 2em;
    margin-bottom: 15px;
    font-family: 'Playfair Display', Georgia, serif;
}

.schedule-subtitle {
    text-align: center;
    color: #6b5230;
    font-size: 1.05em;
    margin-bottom: 30px;
    font-style: italic;
}

.format-note {
    font-size: 0.9em;
    color: #8b7a99;
    font-style: italic;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.schedule-day {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 184, 120, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.schedule-day:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 184, 120, 0.55);
    background: rgba(255, 255, 255, 0.9);
}

.schedule-day h3 {
    color: #2b1a10;
    margin-bottom: 10px;
    font-size: 1.25em;
}

.schedule-day p {
    color: #4c341a;
    margin-bottom: 5px;
}

.contact-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 184, 120, 0.35);
    box-shadow: 0 8px 28px rgba(153, 87, 0, 0.12);
}

.contact-section h2 {
    text-align: center;
    color: #2b1a10;
    font-size: 2em;
    margin-bottom: 30px;
    font-family: 'Playfair Display', Georgia, serif;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3b2a14;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 184, 120, 0.45);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: rgba(255, 255, 255, 0.85);
    color: #2b1a10;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 150, 90, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 150, 90, 0.18);
    background: rgba(255, 255, 255, 0.95);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffbd5a 0%, #ff7e66 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(255, 126, 94, 0.45);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.form-message.success {
    background: rgba(236, 250, 236, 0.9);
    color: #1f5b2b;
    border: 1px solid rgba(115, 203, 132, 0.55);
}

.form-message.error {
    background: rgba(255, 235, 237, 0.95);
    color: #7d1b2a;
    border: 1px solid rgba(235, 136, 149, 0.55);
}

footer {
    text-align: center;
    padding: 30px 0;
    color: #7a4a1f;
    font-style: italic;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .mentor-name {
        font-size: 2.4em;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .mentor-photo img {
        width: 160px;
        height: 160px;
    }
    
    .hero-actions {
        margin-top: 16px;
    }
    
    .cta-btn {
        padding: 12px 22px;
        font-size: 16px;
    }
    
    .section-header,
    .section-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-header h2 {
        font-size: 1.25em;
    }
    
    .section-content {
        line-height: 1.85;
    }
    
    .schedule-section,
    .contact-section {
        padding: 25px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 32px 16px;
        border-radius: 18px;
    }
    
    .mentor-name {
        font-size: 2em;
    }
    
    .mentor-tagline {
        font-size: 1em;
    }
    
    .mentor-subtitle {
        font-size: 0.98em;
        max-width: 92%;
    }
    
    .mentor-photo img {
        width: 140px;
        height: 140px;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 1.15em;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 17px;
    }
}