/* ===================================
   CSS VARIABLES & ROOT STYLES
   =================================== */
:root {
    /* Color Palette */
    --primary-yellow: #FFC933;
    --cream: #FFFAF0;
    --dark-blue: #172A3F;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD966 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a52 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(23, 42, 63, 0.9) 0%, rgba(23, 42, 63, 0.7) 100%);

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-yellow: 0 4px 20px rgba(255, 201, 51, 0.4);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-blue);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.cricket-ball {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    position: relative;
    animation: bounce 1s infinite;
}

.cricket-ball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--dark-blue);
    border-radius: 50%;
}

.loader p {
    color: var(--primary-yellow);
    margin-top: 1rem;
    font-weight: 600;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: #FFFAF0;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

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

.nav-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-logo {
    height: 60px;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--dark-blue);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 3px 0;
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: var(--primary-yellow);
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 20s infinite alternate;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 15s infinite alternate-reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 50%;
    animation: float 18s infinite alternate;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation: float 12s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(255, 201, 51, 0.6));
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-year {
    display: block;
    font-size: 5rem;
    color: white;
    text-shadow: 0 0 30px rgba(255, 201, 51, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
    font-weight: 300;
}

.hero-tagline {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: rgba(255, 201, 51, 0.1);
    border-left: 4px solid var(--primary-yellow);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.tagline-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.typewriter {
    font-size: 1.2rem;
    font-style: italic;
    color: white;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    margin-top: 4rem;
    text-align: center;
    animation: bounce-gentle 2s infinite;
    padding-bottom: 1rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--primary-yellow);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 0.5rem;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-yellow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

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

.scroll-indicator p {
    font-size: 0.9rem;
    color: var(--primary-yellow);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-blue);
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 201, 51, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.btn-full-width {
    width: 100%;
    text-align: center;
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 201, 51, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(255, 201, 51, 0); }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: var(--dark-blue);
    padding: 4rem 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

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

.stat-card {
    background: rgba(255, 201, 51, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-yellow);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity var(--transition-slow);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-yellow);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-unit {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    font-weight: 600;
}

.stat-label {
    color: white;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */
.section-padding {
    padding: 6rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.urgent-title {
    color: #d32f2f;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.objectives-list {
    margin: 2rem 0;
}

.objective-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.objective-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.objective-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.highlight-text {
    font-weight: 600;
    color: var(--dark-blue);
    padding: 1rem;
    background: var(--primary-yellow);
    border-radius: 8px;
    text-align: center;
}

.hospital-link {
    color: var(--dark-blue);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-yellow);
    transition: all var(--transition-normal);
    padding-bottom: 2px;
}

.hospital-link:hover {
    color: var(--primary-yellow);
    border-bottom-color: var(--dark-blue);
}

.about-quote {
    position: relative;
    padding: 3rem;
    background: var(--gradient-dark);
    border-radius: 20px;
    color: white;
}

.quote-icon {
    font-size: 6rem;
    color: var(--primary-yellow);
    opacity: 0.15;
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
    z-index: 0;
}

blockquote {
    position: relative;
    z-index: 2;
}

blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.quote-author {
    text-align: right;
    color: var(--primary-yellow);
    font-weight: 600;
}

/* ===================================
   REGISTRATION SECTION
   =================================== */
.registration-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-top: 5px solid var(--primary-yellow);
    border-bottom: 5px solid var(--primary-yellow);
}

.countdown-container {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.countdown-container h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
    box-shadow: var(--shadow-md);
    animation: pulse-countdown 2s infinite;
}

@keyframes pulse-countdown {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-value {
    display: block;
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
}

.countdown-label {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.registration-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.registration-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.registration-card h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary-yellow);
    padding-bottom: 1rem;
}

.reg-info-list,
.requirements-list {
    margin: 1.5rem 0;
}

.reg-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.reg-info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 2rem;
    min-width: 40px;
}

.info-content strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
}

.info-content p {
    color: #666;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.badge-danger {
    background: #d32f2f;
    color: white;
}

.alert-box {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 5px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.requirement-item:hover {
    transform: translateX(5px);
}

.check-icon {
    font-size: 1.5rem;
    color: #4caf50;
    font-weight: bold;
    min-width: 30px;
}

/* ===================================
   TOURNAMENT SECTION
   =================================== */
.tournament-section {
    background: white;
}

.tournament-timeline {
    margin-bottom: 4rem;
}

.timeline-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.timeline-date {
    text-align: center;
}

.date-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-yellow);
    animation: pulse 2s infinite;
}

.timeline-line {
    flex: 1;
    height: 4px;
    background: var(--gradient-primary);
    position: relative;
}

.timeline-line::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-yellow);
}

.timeline-date p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.timeline-date span {
    color: #666;
}

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

.format-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 3px solid transparent;
}

.format-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.format-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.format-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tournament-details {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-yellow);
    transition: all var(--transition-normal);
}

.detail-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.detail-section h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

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

.detail-section li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.detail-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.detail-section .sub-list {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.detail-section .sub-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.detail-section strong {
    color: var(--dark-blue);
    font-weight: 600;
}

/* ===================================
   FACILITIES SECTION
   =================================== */
.facilities-section {
    background: var(--cream);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.facilities-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.facilities-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facilities-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.facilities-card.provided h3 {
    color: #4caf50;
    border-bottom: 3px solid #4caf50;
}

.facilities-card.not-provided h3 {
    color: #f44336;
    border-bottom: 3px solid #f44336;
}

.facilities-card ul {
    list-style: none;
}

.facilities-card li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--cream);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.facilities-card li:hover {
    transform: translateX(10px);
}

.facilities-card.provided li::before {
    content: '✓ ';
    color: #4caf50;
    font-weight: bold;
    margin-right: 0.5rem;
}

.facilities-card.not-provided li::before {
    content: '× ';
    color: #f44336;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===================================
   RULES SECTION (ACCORDION)
   =================================== */
.rules-section {
    background: white;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--cream);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.accordion-header:hover {
    background: var(--primary-yellow);
}

.accordion-header.active {
    background: var(--dark-blue);
    color: white;
}

.accordion-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform var(--transition-normal);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-content ul {
    list-style: none;
    padding: 2rem;
}

.accordion-content li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--cream);
}

.accordion-content li:last-child {
    border-bottom: none;
}

.accordion-content strong {
    color: var(--dark-blue);
}

/* ===================================
   AWARDS SECTION
   =================================== */
.awards-section {
    background: var(--gradient-dark);
    color: white;
}

.awards-section .section-title {
    color: white;
}

.awards-section .title-underline {
    background: var(--primary-yellow);
}

.awards-section .section-subtitle {
    color: var(--primary-yellow);
}

.awards-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.award-card-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 5px solid transparent;
}

.award-card-large:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.award-card-large.winner {
    border-color: gold;
}

.award-card-large.runner {
    border-color: silver;
}

.award-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--dark-blue);
    color: white;
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
}

.award-trophy {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: trophy-float 3s infinite;
}

@keyframes trophy-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.award-card-large h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.award-amount {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.award-extras {
    color: #666;
    font-size: 1.1rem;
}

.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.awards-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 2rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.award-card-small {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 201, 51, 0.3);
    transition: all var(--transition-normal);
}

.award-card-small:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-card-small h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.award-card-small p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.prize-note {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 201, 51, 0.2);
    border-radius: 15px;
    margin-top: 3rem;
}

.prize-note p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-yellow);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 3px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    font-family: var(--font-secondary);
}

.phone-number a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

.phone-number a:hover {
    color: var(--dark-blue);
    transform: scale(1.05);
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.address-text {
    line-height: 1.8;
    color: #555;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.map-button {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-yellow);
    color: var(--dark-blue);
    border-color: var(--primary-yellow);
}

.map-button:hover {
    background: var(--dark-blue);
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.important-notes {
    background: var(--dark-blue);
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.important-notes h3 {
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.important-notes ul {
    list-style: none;
}

.important-notes li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 201, 51, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
}

/* Venue Info Section */
.venue-info {
    background: linear-gradient(135deg, var(--primary-yellow), #FFD700);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.venue-info h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.venue-announcement {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.venue-notice {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.venue-subtext {
    font-size: 1rem;
    color: rgba(23, 42, 63, 0.8);
    line-height: 1.6;
}

.travel-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
}

.travel-info h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.travel-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.travel-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.travel-card h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.travel-card p {
    color: #555;
    line-height: 1.8;
}

.seo-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
}

.seo-content h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.seo-content h4 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

.seo-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.seo-content li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    line-height: 1.8;
    color: #555;
}

.seo-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.seo-content strong {
    color: var(--dark-blue);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    grid-column: span 3;
}

.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-col a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-left {
    text-align: left;
    flex: 1;
}

.footer-bottom-right {
    text-align: right;
}

.footer-credit {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.footer-dev-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-dev-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-yellow);
}

.footer-dev-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width var(--transition-normal);
}

.footer-dev-link:hover::after {
    width: 100%;
}

.footer-note {
    color: var(--primary-yellow);
    margin-top: 0.5rem;
}

.footer-hospital-link {
    color: var(--primary-yellow);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-yellow);
    transition: all var(--transition-normal);
    padding-bottom: 2px;
}

.footer-hospital-link:hover {
    color: white;
    border-bottom-color: white;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 201, 51, 0.1);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    color: var(--primary-yellow);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 201, 51, 0.4);
}

/* Sponsors Section */
.sponsors-section {
    background: var(--gradient-dark);
    color: white;
}

.sponsors-section .section-title {
    color: white;
}

.sponsors-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-yellow);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 201, 51, 0.3);
    border-color: var(--primary-yellow);
}

.sponsor-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.sponsor-card h3 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sponsor-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.sponsor-contact {
    background: rgba(255, 201, 51, 0.1);
    border-left: 4px solid var(--primary-yellow);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: left;
}

.sponsor-contact h4 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-person {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.sponsor-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    max-width: 100%;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-word;
    flex-wrap: wrap;
}

.contact-detail span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-detail-icon {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sponsor-contact a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all var(--transition-normal);
    word-break: break-all;
}

.sponsor-contact a:hover {
    color: white;
    text-shadow: 0 0 10px var(--primary-yellow);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-blue);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="fade-in"].animated {
    opacity: 1;
}

[data-animate="slide-up"].animated {
    transform: translateY(0);
}

[data-animate="slide-up"]:nth-child(2) {
    transition-delay: 0.1s;
}

[data-animate="slide-up"]:nth-child(3) {
    transition-delay: 0.2s;
}

[data-animate="slide-up"]:nth-child(4) {
    transition-delay: 0.3s;
}

[data-animate="zoom-in"] {
    transform: scale(0.8);
}

[data-animate="zoom-in"].animated {
    transform: scale(1);
}

[data-animate="fade-in-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-in-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-in-right"] {
    transform: translateX(50px);
}

[data-animate="fade-in-right"].animated {
    transform: translateX(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .title-year {
        font-size: 4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left var(--transition-normal);
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu .nav-link {
        color: var(--dark-blue);
        font-size: 1.2rem;
        font-weight: 600;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-yellow);
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding: 6rem 0 4rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .hero-logo-container {
        margin-bottom: 1.5rem;
    }

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

    .title-year {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-indicator {
        margin-top: 2rem;
    }

    /* Stats */
    .stats-section {
        margin-top: 0;
    }

    /* Sections */
    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Registration */
    .registration-grid,
    .facilities-grid,
    .awards-main-grid {
        grid-template-columns: 1fr;
    }

    /* Countdown */
    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }

    .footer-logo-section {
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }

    /* Sponsors */
    .sponsor-card {
        padding: 1.5rem;
    }

    .sponsor-icon {
        font-size: 3rem;
    }

    .sponsor-card h3 {
        font-size: 1.5rem;
    }

    .sponsor-card p {
        font-size: 1rem;
    }

    .sponsor-contact {
        padding: 1.5rem;
    }

    .sponsor-contact h4 {
        font-size: 1.1rem;
    }

    .contact-person {
        font-size: 1.1rem;
    }

    .sponsor-contact-details {
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.3rem;
        font-size: 0.95rem;
    }

    .contact-detail span {
        display: block;
        width: 100%;
    }

    .contact-detail-icon {
        display: inline-block;
        margin-right: 0.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 70vh;
        padding: 5rem 0 3rem;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }

    .hero-logo-container {
        margin-bottom: 1rem;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .tagline-text {
        font-size: 1rem;
    }

    .scroll-indicator {
        margin-top: 1.5rem;
    }

    .scroll-indicator p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}
