/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

/* Navigation */
header {
    background: #1a2a6c;
    color: white;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.logo span { color: #00d4ff; }

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li { margin-left: 20px; }

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu li a:hover { color: #00d4ff; }

.btn-signup {
    background: #eeff00;
    padding: 8px 15px;
    border-radius: 5px;
    color: #1a2a6c !important;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 69px;
        flex-direction: column;
        background-color: #1a2a6c;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 15vw;
    }

    .nav-menu li a {
        font-size: 1.1rem;
        display: block;
        padding: 10px;
    }

    .btn-signup {
        display: inline-block;
        margin: 10px auto;
    }
    
    header {
        padding: 1rem 3%;
    }
}

/* Tablet Responsive Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    nav ul li {
        margin-left: 15px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
    
    .btn-signup {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    header {
        padding: 1rem 3%;
    }
}

/* Sections */
section {
    padding: 100px 10%;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a3a7c 50%, #1a2a6c 100%);
    color: white;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 145px 10% 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid #00d4ff;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.eagle-scout-badge {
    background: rgba(238, 255, 0, 0.2);
    border: 2px solid #eeff00;
    color: #eeff00;
    box-shadow: 0 4px 15px rgba(238, 255, 0, 0.3);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-feature:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.hero-feature-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.hero-feature span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-register-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 45px;
    font-size: 1.3rem;
    font-weight: 600;
    background: #00d4ff;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.hero-register-btn:hover {
    background: #10c3e7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.decoration-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 145px 5% 80px;
        min-height: 75vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-feature {
        min-width: 100px;
        padding: 15px;
    }

    .hero-feature-icon {
        font-size: 2rem;
    }

    .hero-feature span {
        font-size: 0.9rem;
    }

    .decoration-circle-1,
    .decoration-circle-2,
    .decoration-circle-3 {
        display: none;
    }
}

/* Raffle Section */
.raffle-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 80px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.raffle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(26, 42, 108, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.raffle-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.raffle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid #00d4ff;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a2a6c;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.raffle-title {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 20px;
    font-weight: 700;
}

.raffle-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.raffle-prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prize-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(26, 42, 108, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    border: 3px solid #e8eef3;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff, #1a2a6c, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.prize-card:hover::before {
    transform: scaleX(1);
}

.prize-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.prize-featured {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a3a7c 100%);
    color: white;
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.3);
}

.prize-featured::before {
    background: linear-gradient(90deg, #00d4ff, #1a2a6c, #00d4ff);
}

.prize-featured .prize-name,
.prize-featured .prize-description {
    color: white;
}

.prize-featured .prize-number {
    color: #00d4ff;
}

.prize-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.prize-featured .prize-icon {
    animation: bounce 2s ease-in-out infinite, glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.9)); }
}

.prize-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a2a6c;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(26, 42, 108, 0.2);
}

.prize-name {
    font-size: 1.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
    font-weight: 700;
}

.prize-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.prize-more .prize-icon {
    font-size: 3.5rem;
}

@media screen and (max-width: 768px) {
    .raffle-section {
        padding: 60px 5%;
    }
    
    .raffle-title {
        font-size: 2rem;
    }
    
    .raffle-subtitle {
        font-size: 1rem;
    }
    
    .raffle-prizes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .prize-card {
        padding: 30px 20px;
    }
    
    .prize-number {
        font-size: 2.5rem;
    }
    
    .prize-name {
        font-size: 1.3rem;
    }
    
    .prize-icon {
        font-size: 3rem;
    }
}

/* Info Section */
.info-section {
    background: white;
    padding: 80px 10%;
}

.info-section h2 {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #f7f7f7;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.1rem;
    color: #1a2a6c;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.8;
    margin: 5px 0;
}

/* Details Section */
.details-section {
    background: #f4f7f6;
    padding: 80px 10%;
}

.details-section h2 {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 40px;
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Camera Roll */
.camera-roll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
}

.photo-placeholder {
    min-width: 300px;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Sponsors Section */
.sponsors-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 80px 10%;
}

.sponsors-section h2 {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
}

.sponsors-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefactor Showcase */
.benefactor-showcase {
    max-width: 700px;
    margin: 0 auto 60px;
}

.benefactor-card {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a3a7c 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.benefactor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.benefactor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid #00d4ff;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-text {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefactor-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.benefactor-logo-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    border: 4px solid #00d4ff;
}

.benefactor-logo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-fallback {
    font-size: 3rem;
    font-weight: bold;
    color: #1a2a6c;
}

.benefactor-name {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefactor-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefactor-link {
    display: inline-block;
    padding: 12px 30px;
    background: #00d4ff;
    color: #1a2a6c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.benefactor-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Sponsor Divider */
.sponsor-divider {
    text-align: center;
    margin: 60px 0 50px;
    position: relative;
}

.sponsor-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #00d4ff, transparent);
}

.divider-text {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 0 30px;
    color: #1a2a6c;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Sponsor Cards Grid */
.sponsor-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    border-top: 4px solid transparent;
}

.sponsor-card.sponsor-gold {
    border-top-color: #FFD700;
}

.sponsor-card.sponsor-silver {
    border-top-color: #C0C0C0;
}

.sponsor-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sponsor-tier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsor-tier-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a2a6c;
}

.sponsor-tier-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #1a2a6c;
}

.sponsor-logo-wrapper {
    width: 100px;
    height: 100px;
    margin: 20px auto 20px;
    background: #f9fafb;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e8eef3;
    transition: all 0.3s;
}

.sponsor-card:hover .sponsor-logo-wrapper {
    border-color: #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.sponsor-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.sponsor-name {
    font-size: 1.1rem;
    color: #1a2a6c;
    margin-bottom: 12px;
    font-weight: 600;
}

.sponsor-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 45px;
}

.sponsor-link {
    display: inline-block;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.sponsor-link:hover {
    color: #1a2a6c;
    border-bottom-color: #1a2a6c;
}

/* Team Section */
.team-section {
    background: #f9fafb;
    padding: 80px 10%;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
}

.team-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-subsection-title {
    font-size: 1.8rem;
    color: #1a2a6c;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.team-subsection-title:first-of-type {
    margin-top: 0;
}

/* Event Staff title - smaller to match the section */
.team-subsection-title:nth-of-type(2) {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

/* Planning Committee - More Prominent */
.organizers-grid {
    gap: 45px;
    margin-bottom: 50px;
    justify-items: center;
    justify-content: center;
}

@media screen and (min-width: 1200px) {
    .organizers-grid {
        grid-template-columns: repeat(3, minmax(250px, 350px));
    }
}

.organizers-grid .team-member {
    justify-self: center;
    padding: 35px 25px;
    border: 3px solid #00d4ff;
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.2);
}

.organizers-grid .portrait-wrapper {
    width: 160px;
    height: 160px;
    border: 5px solid #00d4ff;
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.4);
}

.organizers-grid .member-name {
    font-size: 1.15rem;
    font-weight: 700;
}

.organizers-grid .member-title {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Event Staff - Smaller and Less Prominent */
.staff-grid {
    gap: 25px;
    margin-bottom: 30px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.staff-grid .team-member {
    padding: 20px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.staff-grid .portrait-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border: 3px solid #00d4ff;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.25);
}

.staff-grid .member-name {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.staff-grid .member-title {
    font-size: 0.8rem;
}

.staff-grid .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Team Leader - Centered and Prominent */
.team-leader {
    grid-column: 1 / -1;
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 350px;
    margin: 0 auto 20px;
    border: 2px solid #00d4ff;
}

.team-leader .portrait-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #00d4ff;
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.4);
}

.team-leader .member-name {
    font-size: 1.2rem;
    color: #1a2a6c;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-leader .member-title {
    font-size: 0.95rem;
    color: #00d4ff;
    font-weight: 600;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portrait-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00d4ff;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.3);
}

.team-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-member:hover .team-portrait {
    transform: scale(1.1);
}

.member-info {
    margin-top: 15px;
}

.member-name {
    font-size: 1.1rem;
    color: #1a2a6c;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-title {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 500;
}

/* Special Thanks - Now part of Team Section */
.team-subsection-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.thanks-grid {
    gap: 40px;
    margin-bottom: 40px;
}

/* Prior Events Section */
.prior-events-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 50%, #f0f4f8 100%);
    padding: 80px 10%;
    position: relative;
    overflow: hidden;
}

.prior-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(26, 42, 108, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.prior-events-section h2 {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.prior-events-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.prior-events-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prior-event-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
}

.prior-event-item:last-child {
    margin-bottom: 0;
}

.prior-event-item-reverse {
    flex-direction: row-reverse;
}

.prior-event-item:hover {
    transform: translateX(10px);
}

.prior-event-item-reverse:hover {
    transform: translateX(-10px);
}

.prior-event-image {
    flex: 1.2;
    min-width: 450px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.25);
    border: 4px solid transparent;
    transition: all 0.4s ease;
}

.prior-event-item:hover .prior-event-image {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.35);
    border-color: #00d4ff;
}

.prior-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.prior-event-item:hover .prior-event-image img {
    transform: scale(1.1);
}

.prior-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.prior-event-item:hover .prior-event-overlay {
    opacity: 1;
}

.prior-event-content-wrapper {
    flex: 0.8;
    padding: 30px;
    position: relative;
}

.prior-event-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
    position: relative;
}

.prior-event-content-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #00d4ff 0%, #1a2a6c 100%);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.prior-event-item-reverse .prior-event-content-wrapper::before {
    left: auto;
    right: 0;
}

.prior-event-item:hover .prior-event-content-wrapper::before {
    height: 80px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.prior-event-title h3 {
    font-size: 2.2rem;
    color: #1a2a6c;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.prior-event-item:hover .prior-event-title h3 {
    color: #00d4ff;
    transform: translateX(5px);
}

.prior-event-item-reverse:hover .prior-event-title h3 {
    transform: translateX(-5px);
}

.prior-event-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-left: 24px;
    transition: color 0.3s ease;
}

.prior-event-item-reverse .prior-event-description {
    padding-left: 0;
    padding-right: 24px;
    text-align: right;
}

.prior-event-item:hover .prior-event-description {
    color: #555;
}

.prior-event-arrow {
    font-size: 2rem;
    color: #00d4ff;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.prior-event-item:hover .prior-event-arrow {
    transform: translateX(10px);
    color: #1a2a6c;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.prior-event-item-reverse:hover .prior-event-arrow {
    transform: translateX(-10px);
}

/* Progressive reveal effect - items get slightly larger */
.prior-event-item:nth-child(1) {
    transform: scale(0.95);
}

.prior-event-item:nth-child(2) {
    transform: scale(1);
}

.prior-event-item:hover {
    z-index: 10;
}

/* Mobile Responsive for Prior Events */
@media screen and (max-width: 1024px) {
    .prior-event-image {
        min-width: 350px;
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .prior-events-section {
        padding: 60px 5%;
    }

    .prior-event-item,
    .prior-event-item-reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        transform: scale(1) !important;
    }

    .prior-event-item:hover,
    .prior-event-item-reverse:hover {
        transform: translateY(-5px) !important;
    }

    .prior-event-image {
        min-width: 100%;
        height: 250px;
    }

    .prior-event-content-wrapper {
        width: 100%;
        padding: 20px;
    }

    .prior-event-content-wrapper::before {
        display: none;
    }

    .prior-event-title {
        justify-content: center;
        text-align: center;
    }

    .prior-event-title h3 {
        font-size: 1.8rem;
    }

    .prior-event-description {
        padding: 0;
        text-align: center !important;
    }

    .prior-event-item:hover .prior-event-title h3,
    .prior-event-item-reverse:hover .prior-event-title h3 {
        transform: translateY(-3px);
    }
}

/* Door Prize Details Section */
.door-prize-details-section {
    background: white;
    padding: 60px 10%;
    text-align: center;
}

.view-prizes-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #00d4ff;
    color: #1a2a6c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.view-prizes-button:hover {
    background: #10c3e7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
}

/* Door Prize Modal */
.door-prize-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.door-prize-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid #e8eef3;
    background: linear-gradient(135deg, #1a2a6c 0%, #2a3a7c 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.prizes-list-column h3 {
    font-size: 1.5rem;
    color: #1a2a6c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.live-badge {
    display: inline-block;
    background: #00d4ff;
    color: #1a2a6c;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prizes-list-simple {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.prizes-list-simple li {
    padding: 8px 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-column h3 {
    font-size: 1.5rem;
    color: #1a2a6c;
    margin-bottom: 20px;
}

.terms-textbox {
    background: #f9fafb;
    border: 2px solid #e8eef3;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
}

.terms-textbox p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-textbox p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive for Modal */
@media screen and (max-width: 768px) {
    .door-prize-details-section {
        padding: 40px 5%;
    }

    .view-prizes-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prizes-list-column h3,
    .terms-column h3 {
        font-size: 1.3rem;
    }

    .terms-textbox {
        padding: 20px;
    }
}

/* Resources */
.info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    margin-top: 20px;
}

.signup-footer {
    background: #1a2a6c;
    color: white;
}

.cta-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1rem;
    background: #00d4ff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}