/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --forest-green: #1a5d3a;
    --championship-gold: #d4af37;
    --thunder-gray: #2d3748;
    --pure-white: #ffffff;
    --emerald: #50c878;
    --platinum: #e2e8f0;
    --carbon: #1a202c;
    --mist: #f7fafc;
    
    /* Typography */
    --font-primary: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    --font-secondary: 'Inter', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 14px rgba(26, 93, 58, 0.15);
    --shadow-lg: 0 10px 30px rgba(45, 55, 72, 0.1);
    --shadow-xl: 0 20px 40px rgba(45, 55, 72, 0.15);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--carbon);
    background-color: var(--pure-white);
    overflow-x: hidden;
    max-width: 100vw;
}

body.menu-open {
    overflow: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-circle {
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.logo-type {
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.golf-icon {
    font-size: 2.5rem;
    color: var(--forest-green);
    animation: golfSpin 20s linear infinite;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--forest-green);
    line-height: 1.2;
}

.subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--championship-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


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

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mist);
    color: var(--thunder-gray);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--forest-green);
    transition: all var(--transition-normal);
    border-radius: 2px;
    transform-origin: center;
}

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

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

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

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

.nav-link {
    text-decoration: none;
    color: var(--thunder-gray);
    font-weight: 600;
    font-size: 0.95rem;
    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(--championship-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--forest-green);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: calc(100vh - 90px);
        margin-top: 90px;
        align-items: flex-start;
    }
}

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

.hero-image-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: heroParallax 20s ease-in-out infinite;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 93, 58, 0.3) 0%,
        rgba(26, 93, 58, 0.2) 50%,
        rgba(80, 200, 120, 0.1) 100%
    );
    z-index: -1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-ball {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatUp 8s linear infinite;
}

.floating-ball.ball-1 {
    left: 20%;
    animation-delay: 0s;
}

.floating-ball.ball-2 {
    left: 50%;
    animation-delay: 2s;
}

.floating-ball.ball-3 {
    left: 80%;
    animation-delay: 4s;
}

@keyframes heroParallax {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    color: var(--pure-white);
    max-width: 1200px;
    padding: 0 2rem;
    animation: heroFadeIn 1.5s ease-out;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-content img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: auto;
    z-index: 5;
}

.hero-content img:hover {
    opacity: 1;
}

.hero-info {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: titleSlide 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-year {
    display: block;
    font-family: var(--font-secondary);
    color: var(--championship-gold);
    font-size: 0.6em;
    margin-top: 0.5rem;
    animation-delay: 0.4s;
}

@keyframes titleSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--championship-gold);
    margin-right: 0.5rem;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.detail-value {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    text-transform: none;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    color: var(--pure-white);
    box-shadow: 0 8px 25px rgba(26, 93, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 93, 58, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
}

.btn-outline:hover {
    background: var(--forest-green);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--pure-white);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-family: var(--font-secondary);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pure-white), transparent);
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Tournament Status */
.tournament-status {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--mist) 0%, var(--platinum) 100%);
}

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

.status-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 93, 58, 0.05), transparent);
    transition: left 0.6s;
}

.status-card:hover::before {
    left: 100%;
}

.status-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.status-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
}

.status-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--forest-green);
    font-family: var(--font-secondary);
    line-height: 1;
}

.status-label {
    font-size: 0.95rem;
    color: var(--thunder-gray);
    margin-top: 0.5rem;
}

/* Section Styles */
.section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--mist);
    color: var(--forest-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--carbon);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--thunder-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* News Section */
.news {
    background: var(--mist);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.news-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.news-item.featured {
    grid-row: span 2;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-item.featured .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--championship-gold);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-item.featured .news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-meta time {
    color: var(--thunder-gray);
    font-size: 0.9rem;
}

.news-category {
    background: var(--emerald);
    color: var(--pure-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--carbon);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-item.featured .news-title {
    font-size: 1.5rem;
}

.news-excerpt {
    color: var(--thunder-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.news-link:hover {
    color: var(--emerald);
}

.news-more {
    text-align: center;
}

/* Players Section */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.player-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.player-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--emerald), var(--championship-gold));
}

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

.player-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.player-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--platinum), var(--mist));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--thunder-gray);
    position: relative;
}

.player-avatar::before {
    content: '👤';
    font-size: 2rem;
}

.player-rank {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--championship-gold);
    color: var(--pure-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.player-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--carbon);
    margin-bottom: 0.5rem;
}

.player-category {
    background: var(--forest-green);
    color: var(--pure-white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.player-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--thunder-gray);
    margin-bottom: 0.25rem;
    display: block;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--forest-green);
    font-family: var(--font-secondary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    margin: 2rem 0 0 0;
}

.cta-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 20"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x;
    background-size: 200px 100%;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

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

.cta-section .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-normal);
    text-transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-section .btn:hover::before {
    left: 100%;
}

.cta-section .btn-primary {
    background: var(--pure-white);
    color: var(--forest-green);
    border: 2px solid var(--pure-white);
}

.cta-section .btn-primary:hover {
    background: var(--championship-gold);
    color: var(--carbon);
    border-color: var(--championship-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-section .btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--pure-white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
        margin: 2rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .cta-section .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Overview Section */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--championship-gold), #ffdc73);
    color: var(--carbon);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tournament-details {
    margin: 2rem 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-card {
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border-left: 4px solid var(--forest-green);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--championship-gold);
}

.detail-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.detail-card p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--carbon);
    margin: 0;
}

.overview-text {
    text-align: left;
}

.overview-text .section-badge {
    margin-bottom: 1.5rem;
}

.overview-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--thunder-gray);
    margin-bottom: 2rem;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item i {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-item:hover h4 {
    color: #3b82f6;
}

.feature-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-chart {
    width: 100%;
    max-width: 400px;
    position: relative;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.schedule-item {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--platinum);
}

.schedule-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.schedule-item.featured {
    border: 2px solid var(--championship-gold);
    background: linear-gradient(135deg, var(--pure-white) 0%, #fffef8 100%);
}

.schedule-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--championship-gold) 0%, var(--emerald) 100%);
}

.schedule-date {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    color: var(--pure-white);
    padding: 1rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-item.featured .schedule-date {
    background: linear-gradient(135deg, var(--championship-gold) 0%, #ffdc73 100%);
    color: var(--carbon);
}

.schedule-date .month {
    font-size: 1rem;
    font-weight: 600;
    order: 1;
}

.schedule-date .day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-secondary);
    order: 2;
}

.schedule-date .weekday {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
    order: 3;
}

.schedule-content {
    padding: 1.5rem;
    position: relative;
}

.schedule-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.schedule-badge.practice {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.schedule-badge.qualifying {
    background: linear-gradient(135deg, #fff3e0, #ffcc02);
    color: #e65100;
}

.schedule-badge.final {
    background: linear-gradient(135deg, var(--championship-gold), #ffdc73);
    color: var(--carbon);
}

.schedule-badge.proam {
    background: linear-gradient(135deg, #f3e5f5, #ce93d8);
    color: #7b1fa2;
}

.schedule-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--carbon);
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
    line-height: 1.3;
}

.schedule-content p {
    color: var(--thunder-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.schedule-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-time, .schedule-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--carbon);
}

.schedule-time {
    font-weight: 600;
    color: var(--forest-green);
}

.schedule-time i, .schedule-info i {
    width: 16px;
    text-align: center;
    color: var(--emerald);
}

.schedule-info {
    color: var(--thunder-gray);
}

/* Schedule Responsive Design */
@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .schedule-date {
        padding: 0.75rem;
        gap: 0.375rem;
    }

    .schedule-date .month {
        font-size: 0.9rem;
    }

    .schedule-date .day {
        font-size: 1.5rem;
    }

    .schedule-date .weekday {
        font-size: 0.75rem;
    }

    .schedule-content {
        padding: 1.5rem;
    }

    .schedule-content h3 {
        font-size: 1.2rem;
    }

    .schedule-details {
        gap: 0.5rem;
    }

    .schedule-time, .schedule-info {
        font-size: 0.9rem;
    }
}

/* Results Page Styles */
.results-status {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    padding: 4rem 0;
}

.status-notice {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    border-left: 6px solid var(--forest-green);
}

.status-notice i {
    font-size: 3rem;
    color: var(--forest-green);
    min-width: 60px;
}

.status-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--carbon);
    margin-bottom: 0.5rem;
}

.status-content p {
    color: var(--thunder-gray);
    line-height: 1.6;
}

/* Results Timeline */
.past-results {
    background: var(--pure-white);
    padding: 6rem 0;
}

.results-timeline {
    position: relative;
    margin-top: 4rem;
}

.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--forest-green) 0%, var(--emerald) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--championship-gold);
    border-radius: 50%;
    border: 4px solid var(--pure-white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.timeline-year {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    color: var(--pure-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transform: translateY(10px);
}

.timeline-content {
    flex: 1;
}

.result-card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--platinum);
    position: relative;
    transition: all var(--transition-normal);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.result-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-card h3::before {
    content: '🏆';
    font-size: 1.2rem;
}

.winner-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--mist) 0%, rgba(26, 93, 58, 0.05) 100%);
    border-radius: var(--radius-lg);
}

.winner-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--carbon);
}

.winner-score {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--championship-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
}

.tournament-details {
    display: flex;
    gap: 2rem;
    color: var(--thunder-gray);
    font-size: 0.95rem;
}

.tournament-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tournament-details span:first-child::before {
    content: '📍';
    font-size: 1rem;
}

.tournament-details span:last-child::before {
    content: '📅';
    font-size: 1rem;
}

/* Video Container (Responsive YouTube embed) */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

/* News Article Link */
.news-article-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-article-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.news-article-link:hover::before {
    left: 100%;
}

.news-article-link:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.news-article-link i:first-child {
    font-size: 1.1rem;
}

.news-article-link i:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

.news-article-link span {
    position: relative;
    z-index: 1;
}

/* Tournament Statistics */
.tournament-stats {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    color: var(--pure-white);
    padding: 6rem 0;
}

.tournament-stats .section-title,
.tournament-stats .section-description {
    color: var(--pure-white);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--championship-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--carbon);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--championship-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Results Format */
.results-format {
    background: var(--mist);
    padding: 6rem 0;
}

.results-preview {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--platinum);
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--thunder-gray);
    cursor: pointer;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: all var(--transition-normal);
    position: relative;
}

.tab-button.active {
    color: var(--forest-green);
    background: var(--pure-white);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-green);
    border-radius: 2px 2px 0 0;
}

.tab-content {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--platinum);
}

.leaderboard-table th {
    background: var(--mist);
    font-weight: 700;
    color: var(--carbon);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.winner-row {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.winner-row .rank {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest-green);
}

.player-name .name {
    font-weight: 600;
    color: var(--carbon);
}

.player-name .affiliation {
    font-size: 0.85rem;
    color: var(--thunder-gray);
}

.category {
    background: var(--forest-green);
    color: var(--pure-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.score, .total {
    font-weight: 600;
    text-align: center;
}

.to-par {
    font-weight: 700;
    text-align: center;
    color: var(--forest-green);
}

/* Live Updates */
.live-updates {
    background: var(--pure-white);
    padding: 4rem 0;
}

.update-info-card {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.update-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--carbon);
    margin-bottom: 1rem;
}

.update-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--thunder-gray);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--forest-green);
}

.notification-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.notification-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--platinum);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.notification-form input:focus {
    border-color: var(--forest-green);
    outline: none;
}

/* Results CTA */
.results-cta {
    background: linear-gradient(135deg, var(--carbon) 0%, var(--thunder-gray) 100%);
    color: var(--pure-white);
    padding: 6rem 0;
}

.results-cta .cta-content h2,
.results-cta .cta-content p {
    color: var(--pure-white);
}

/* Ticket Page Styles */
.ticket-info {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    padding: 6rem 0;
}

.ticket-highlight {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
    border-left: 6px solid var(--forest-green);
}

.ticket-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--carbon);
    margin-bottom: 1rem;
}

.ticket-highlight > p {
    color: var(--thunder-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.ticket-features-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
}

.ticket-features-two .feature-item {
    padding: 2rem !important;
    text-align: center !important;
    flex-direction: column !important;
    align-items: center !important;
}

.ticket-features-two .feature-item i {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
    margin-top: 0 !important;
    min-width: auto !important;
}

.ticket-features-two .feature-item h4 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
}

.ticket-features-two .feature-item p {
    font-size: 1rem !important;
}

.ticket-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--mist);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.ticket-features .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ticket-features .feature-item i {
    font-size: 1.5rem;
    color: var(--forest-green);
    min-width: 30px;
    margin-top: 0.25rem;
}

.ticket-features .feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--carbon);
    margin-bottom: 0.5rem;
}

.ticket-features .feature-item p {
    color: var(--thunder-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ticket Types */
.ticket-types {
    background: var(--pure-white);
    padding: 6rem 0;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ticket-card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--platinum);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.ticket-card.featured {
    border: 2px solid var(--championship-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.ticket-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--championship-gold) 0%, #ffdc73 100%);
}

.ticket-header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    color: var(--pure-white);
    padding: 2rem;
    position: relative;
}

.ticket-card.featured .ticket-header {
    background: linear-gradient(135deg, var(--championship-gold) 0%, #ffdc73 100%);
    color: var(--carbon);
}

.ticket-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-width: 80px;
    margin-bottom: 1rem;
}

.ticket-card.featured .ticket-date {
    background: rgba(0, 0, 0, 0.15);
}

.ticket-date .day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.ticket-date .month {
    font-size: 0.9rem;
    font-weight: 600;
}

.ticket-date .weekday {
    font-size: 0.8rem;
    opacity: 0.9;
}

.ticket-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ticket-title p {
    opacity: 0.9;
    font-size: 1rem;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--emerald);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.ticket-content {
    padding: 2rem;
}

.ticket-price {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-item {
    text-align: center;
    flex: 1;
    padding: 1rem;
    background: var(--mist);
    border-radius: var(--radius-lg);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--thunder-gray);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--forest-green);
    font-family: var(--font-secondary);
}

.ticket-card.featured .price-amount {
    color: var(--championship-gold);
}

.ticket-features ul {
    list-style: none;
    padding: 0;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--thunder-gray);
    font-size: 0.95rem;
}

.ticket-features li::before {
    content: '✓';
    color: var(--forest-green);
    font-weight: bold;
    font-size: 1rem;
}

/* Ticket Bundle */
.ticket-bundle {
    margin-top: 3rem;
}

.bundle-card {
    background: linear-gradient(135deg, var(--championship-gold) 0%, #ffdc73 100%);
    color: var(--carbon);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.bundle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bundle-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.bundle-badge {
    background: var(--forest-green);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.bundle-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bundle-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.bundle-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--carbon);
    font-family: var(--font-secondary);
}

.save-amount {
    background: var(--emerald);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.bundle-description {
    flex: 1;
}

.bundle-description p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Purchase Information */
.purchase-info {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    padding: 6rem 0;
}

.purchase-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.purchase-schedule h3,
.purchase-methods h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--carbon);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-schedule h3::before {
    content: '📅';
    font-size: 1.2rem;
}

.purchase-methods h3::before {
    content: '💳';
    font-size: 1.2rem;
}

.schedule-timeline {
    position: relative;
    padding-left: 2rem;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--forest-green) 0%, var(--emerald) 100%);
    border-radius: 2px;
}

.schedule-timeline .timeline-item {
    position: relative;
    padding-bottom: 2rem;
    margin-left: 1rem;
}

.schedule-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--championship-gold);
    border-radius: 50%;
    border: 3px solid var(--pure-white);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    background: var(--forest-green);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--carbon);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--thunder-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.method-grid {
    display: grid;
    gap: 1.5rem;
}

.method-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--platinum);
    transition: all var(--transition-normal);
    position: relative;
}

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

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--pure-white);
}

.method-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--carbon);
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--thunder-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--thunder-gray);
    color: var(--pure-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Access Information */
.access-info {
    background: var(--pure-white);
    padding: 6rem 0;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.venue-info {
    background: var(--mist);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

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

.venue-address,
.venue-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--thunder-gray);
}

.venue-address i,
.venue-phone i {
    color: var(--forest-green);
    width: 20px;
}

.access-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.access-method {
    background: var(--mist);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.access-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--carbon);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.access-method i {
    color: var(--forest-green);
    width: 20px;
}

.access-method ul {
    list-style: none;
    padding: 0;
}

.access-method li {
    padding: 0.5rem 0;
    color: var(--thunder-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.access-method li::before {
    content: '•';
    color: var(--forest-green);
    font-weight: bold;
}

.parking-info {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    color: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.parking-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.parking-details {
    margin-bottom: 1.5rem;
}

.parking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.parking-item:last-child {
    border-bottom: none;
}

.parking-label {
    font-weight: 600;
}

.parking-value {
    font-weight: 700;
    color: var(--championship-gold);
}

.parking-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.parking-notice i {
    color: var(--championship-gold);
    margin-top: 0.25rem;
    min-width: 16px;
}

.parking-notice p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Purchase CTA */
.purchase-cta {
    background: linear-gradient(135deg, var(--carbon) 0%, var(--thunder-gray) 100%);
    color: var(--pure-white);
    padding: 6rem 0;
}

.purchase-cta .cta-content h2,
.purchase-cta .cta-content p {
    color: var(--pure-white);
}

.purchase-cta .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Results Page Mobile Responsiveness */
@media (max-width: 768px) {
    .status-notice {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1rem;
    }

    .status-notice i {
        font-size: 2.5rem;
        min-width: auto;
    }

    .timeline-container {
        padding-left: 1rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        align-self: flex-start;
        min-width: 100px;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        transform: none;
    }

    .result-card {
        padding: 1.5rem;
    }

    .winner-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }

    .winner-name {
        font-size: 1.2rem;
    }

    .winner-score {
        align-self: flex-end;
        font-size: 1.1rem;
    }

    .tournament-details {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0;
    }

    .tab-button {
        border-radius: 0;
        text-align: left;
    }

    .tab-button.active::after {
        height: 2px;
        left: 1rem;
        right: 1rem;
    }

    .leaderboard-table {
        font-size: 0.9rem;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 0.75rem 0.5rem;
    }

    .update-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .notification-form {
        flex-direction: column;
        gap: 1rem;
    }

    .update-info-card {
        padding: 2rem;
    }

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

/* Ticket Page Mobile Responsiveness */
@media (max-width: 768px) {
    .ticket-highlight {
        padding: 2rem;
        margin-top: 2rem;
    }

    .ticket-highlight h3 {
        font-size: 1.5rem;
    }

    .ticket-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ticket-features-two {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .ticket-features .feature-item {
        padding: 1.25rem;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ticket-card {
        min-width: auto;
    }

    .ticket-header {
        padding: 1.5rem;
    }

    .ticket-date {
        margin-bottom: 1rem;
        min-width: 70px;
    }

    .ticket-date .day {
        font-size: 1.5rem;
    }

    .ticket-title h3 {
        font-size: 1.2rem;
    }

    .ticket-content {
        padding: 1.5rem;
    }

    .ticket-price {
        flex-direction: column;
        gap: 1rem;
    }

    .bundle-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .bundle-price {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .bundle-amount {
        font-size: 2rem;
    }

    .purchase-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .schedule-timeline {
        padding-left: 1.5rem;
    }

    .schedule-timeline .timeline-item {
        margin-left: 0.5rem;
    }

    .schedule-timeline .timeline-item::before {
        left: -16px;
    }

    .method-card {
        padding: 1.5rem;
    }

    .method-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .method-icon i {
        font-size: 1.25rem;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-info {
        padding: 1.5rem;
    }

    .access-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .access-method {
        padding: 1.5rem;
    }

    .access-method h4 {
        font-size: 1.1rem;
    }

    .parking-info {
        padding: 1.5rem;
    }

    .parking-info h3 {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: var(--carbon);
    color: var(--pure-white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--championship-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--championship-gold);
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--championship-gold);
    font-family: var(--font-secondary);
}

.footer-description {
    color: var(--platinum);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--championship-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--platinum);
}

.contact-item i {
    color: var(--championship-gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--pure-white);
    font-weight: 600;
    opacity: 0.9;
}

.contact-text > span:not(.contact-label) {
    color: var(--platinum);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    background: var(--thunder-gray);
    color: var(--platinum);
}

.footer-bottom {
    border-top: 1px solid var(--thunder-gray);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--platinum);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

.footer-legal a:hover {
    color: var(--championship-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .news-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        padding: .5rem .5rem .25rem .5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 16px 16px;
        max-height: 0;
        overflow: hidden;
        transition: all var(--transition-normal);
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        z-index: 1000;
    }

    .nav-list.active {
        max-height: 500px;
        padding: 2rem 1rem;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--platinum);
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .social-links {
        order: -1;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item.featured {
        grid-column: span 1;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section {
        padding: 4rem 0;
    }

    .news-article-link {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .news-article-link i:first-child {
        font-size: 1rem;
    }
}

/* ===========================
   PAGE-SPECIFIC STYLES
   =========================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/golf-course.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.page-header-content {
    text-align: center;
    color: var(--pure-white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Tournament Highlight */
.tournament-highlight {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    border: 1px solid var(--platinum);
    box-shadow: var(--shadow-md);
}

.tournament-message {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-top: var(--spacing-lg);
    color: var(--thunder-gray);
}

/* Enhanced Detail Cards */
.detail-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--platinum);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

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

.detail-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--emerald) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--forest-green);
}

.detail-content p {
    color: var(--thunder-gray);
    line-height: 1.6;
}

/* Status Notice */
.status-notice {
    background: linear-gradient(135deg, var(--championship-gold) 0%, #f6d55c 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    color: var(--carbon);
    box-shadow: var(--shadow-md);
    margin: var(--spacing-2xl) 0;
}

.status-notice i {
    font-size: 2rem;
    opacity: 0.8;
}

.status-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.status-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Entry Stats */
.entry-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.stat-item {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--platinum);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--thunder-gray);
    font-weight: 500;
}

/* Ticket Highlight */
.ticket-highlight {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    border: 1px solid var(--platinum);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.ticket-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--forest-green);
}

.ticket-highlight p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--thunder-gray);
}

/* Contact Overview */
.contact-overview {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    border: 1px solid var(--platinum);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-overview h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--forest-green);
}

.contact-overview p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--thunder-gray);
}

/* Sponsor Highlight */
.sponsor-highlight {
    background: linear-gradient(135deg, var(--mist) 0%, var(--pure-white) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    border: 1px solid var(--platinum);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.sponsor-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--forest-green);
}

.sponsor-highlight p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--thunder-gray);
}

/* Organizer Role Badge */
.organizer-role {
    display: inline-block;
    background: var(--championship-gold);
    color: var(--carbon);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* Sponsor Logos Grid */
.sponsor-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.sponsor-logo-link {
    text-decoration: none;
    transition: var(--transition-normal);
}

.sponsor-logo-link:hover {
    transform: translateY(-2px);
}

.sponsor-logo-card {
    background: var(--pure-white);
    border: 1px solid var(--platinum);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.sponsor-logo-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--forest-green);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition-normal);
}

.sponsor-logo-card:hover .sponsor-logo {
    filter: grayscale(0%);
}

.sponsor-text-fallback {
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest-green);
    text-align: center;
    line-height: 1.2;
}

/* Support Organizations */
.support-organizations {
    margin: var(--spacing-2xl) 0;
}

.support-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
}

.support-link {
    display: inline-block;
    background: var(--pure-white);
    border: 1px solid var(--platinum);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.support-link:hover {
    background: var(--forest-green);
    color: var(--pure-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* iPhone specific adjustments */
@media (max-width: 480px) {
    .hero {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .hero-info {
        max-width: 320px;
        margin-bottom: 0.5rem;
    }

    .hero-info .hero-details {
        padding: 0.875rem;
        gap: 0.5rem;
        border-radius: 12px;
    }

    .hero-info .detail-label {
        font-size: 0.75rem;
    }

    .hero-info .detail-value {
        font-size: 0.85rem;
    }

    .hero-info .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        max-width: 260px;
    }

    .hero-content img {
        margin-top: 40px;
        display: block;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        z-index: 1;
        object-fit: contain;
        object-position: top center;
    }

    .hero-info {
        bottom: 0;
        max-width: 320px;
    }

    .hero-info .hero-details {
        padding: 0.5rem;
        gap: 0.375rem;
        margin-bottom: 0;
        border-radius: 8px 8px 0 0;
        border-bottom: none;
    }

    .hero-info .detail-label {
        font-size: 0.65rem;
    }

    .hero-info .detail-value {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .hero-info .hero-cta {
        flex-direction: row;
        gap: 0.375rem;
    }

    .hero-info .btn {
        flex: 1;
        padding: 0.625rem 0.4rem;
        font-size: 0.65rem;
        max-width: 130px;
        white-space: nowrap;
        line-height: 1.1;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 7rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .detail-card {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        margin: 0 auto;
    }

    .tournament-highlight,
    .ticket-highlight,
    .contact-overview,
    .sponsor-highlight {
        padding: var(--spacing-xl);
    }

    .hero-content {
        height: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }

    .hero-content img {
        display: block;
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        object-fit: contain;
        object-position: top center;
    }

    .hero-info {
        display: block;
        max-width: 350px;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .hero-info .hero-details {
        background: rgba(0, 0, 0, 0.8);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-radius: 0;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: none;
        border-top: none;
        margin-bottom: 0;
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .hero-info .detail-item {
        background: none;
        border: none;
        padding: 0;
        text-align: center;
    }

    .hero-info .detail-label {
        font-size: 0.7rem;
        margin-bottom: 0.125rem;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
    }

    .hero-info .detail-value {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--pure-white);
        line-height: 1.1;
        white-space: nowrap;
    }

    .hero-info .hero-cta {
        margin-top: 15px;
        margin-bottom: 15px;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }

    .hero-info .btn {
        flex: 1;
        max-width: 140px;
        padding: 0.75rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 20px;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
        line-height: 1.1;
    }

    .status-notice {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl);
    }

    .entry-stats {
        grid-template-columns: 1fr;
    }

    .sponsor-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-lg);
    }

    .sponsor-logo-card {
        height: 100px;
        padding: var(--spacing-lg);
    }

    .sponsor-logo {
        max-height: 60px;
    }

    .support-list {
        flex-direction: column;
        align-items: stretch;
    }

    .support-link {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .detail-item {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .tournament-highlight h3,
    .ticket-highlight h3,
    .contact-overview h3,
    .sponsor-highlight h3 {
        font-size: 1.25rem;
    }

    .tournament-message,
    .ticket-highlight p,
    .contact-overview p,
    .sponsor-highlight p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .status-content h3 {
        font-size: 1.25rem;
    }

    .status-content p {
        font-size: 1rem;
    }

    .sponsor-logos-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .sponsor-logo-card {
        height: 80px;
        padding: var(--spacing-md);
    }

    .sponsor-logo {
        max-height: 50px;
    }

    .sponsor-text-fallback {
        font-size: 0.875rem;
    }
}

/* ================================================
   Sponsors Page Styles
================================================ */

/* Sponsor Introduction Section */
.sponsor-intro {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.sponsor-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.sponsor-intro .container {
    position: relative;
    z-index: 2;
}

.sponsor-highlight {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sponsor-highlight h3 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sponsor-highlight p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Organizers Section */
.organizers {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.organizer-role {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Sponsor Logos Grid */
.sponsor-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sponsor-logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.sponsor-logo-link:hover {
    transform: translateY(-5px);
}

.sponsor-logo-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sponsor-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sponsor-logo-card:hover::before {
    opacity: 1;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.sponsor-logo-card:hover .sponsor-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.sponsor-text-fallback {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    padding: 20px;
}

/* Special Sponsors Section */
.special-sponsors {
    background: linear-gradient(135deg, #fef7ff 0%, #f3f4f6 100%);
    position: relative;
}

.special-sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}

.special-sponsors .container {
    position: relative;
    z-index: 2;
}

.special-sponsors .sponsor-logo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid rgba(168, 85, 247, 0.1);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}

.special-sponsors .sponsor-logo-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.25);
}

/* Official Sponsors Section */
.official-sponsors {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.official-sponsors .sponsor-logo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.95) 100%);
    border: 2px solid rgba(34, 197, 94, 0.1);
}

.official-sponsors .sponsor-logo-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.2);
}

/* Supporting Organizations */
.supporting-orgs {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.support-organizations {
    margin-top: 40px;
}

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

.support-link {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    text-decoration: none;
    color: #1e40af;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.support-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-link:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
    color: #1e40af;
    text-decoration: none;
}

.support-link:hover::before {
    opacity: 1;
}

/* Sponsor Benefits Section */
.sponsor-benefits {
    background: linear-gradient(135deg, #f8fffe 0%, #ecfdf5 100%);
    position: relative;
}

.sponsor-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.sponsor-benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-content {
    margin-top: 40px;
}

.benefits-overview {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefits-overview h3 {
    color: #059669;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-overview p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.2);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h4 {
    color: #059669;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Sponsor Inquiry */
.sponsor-inquiry {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.sponsor-inquiry h3 {
    color: #059669;
    font-size: 1.9rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sponsor-inquiry > p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.inquiry-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    color: #059669;
    font-weight: 600;
}

.contact-item i {
    font-size: 1.2rem;
}

/* Thank You Section */
.thank-you {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.thank-you .container {
    position: relative;
    z-index: 2;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thank-you-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.organizer-signature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    display: inline-block;
}

.organizer-signature strong {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

/* Responsive Design for Sponsors Page */
@media (max-width: 768px) {
    .sponsor-logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sponsor-logo-card {
        height: 140px;
        padding: 25px 20px;
    }

    .sponsor-logo {
        max-height: 80px;
    }

    .sponsor-highlight {
        padding: 30px 20px;
        margin-top: 30px;
    }

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

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

    .support-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .support-link {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .benefit-icon i {
        font-size: 1.8rem;
    }

    .benefit-item h4 {
        font-size: 1.2rem;
    }

    .inquiry-contact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-item {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .sponsor-inquiry {
        padding: 35px 25px;
    }

    .sponsor-inquiry h3 {
        font-size: 1.6rem;
    }

    .benefits-overview {
        padding: 30px 20px;
    }

    .benefits-overview h3 {
        font-size: 1.5rem;
    }

    .benefits-overview p {
        font-size: 1rem;
    }

    .thank-you-content h2 {
        font-size: 2rem;
    }

    .thank-you-content p {
        font-size: 1.1rem;
    }

    .organizer-signature {
        padding: 20px;
    }

    .organizer-signature strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .sponsor-logo-card {
        height: 120px;
        padding: 20px 15px;
    }

    .sponsor-logo {
        max-height: 60px;
    }

    .sponsor-text-fallback {
        font-size: 1rem;
        padding: 15px;
    }

    .sponsor-highlight {
        padding: 25px 15px;
    }

    .sponsor-highlight h3 {
        font-size: 1.3rem;
    }

    .benefits-overview {
        padding: 25px 15px;
    }

    .benefit-item {
        padding: 25px 15px;
    }

    .sponsor-inquiry {
        padding: 25px 15px;
    }

    .sponsor-inquiry h3 {
        font-size: 1.4rem;
    }

    .contact-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .thank-you-content h2 {
        font-size: 1.7rem;
    }

    .thank-you-content p {
        font-size: 1rem;
    }
}

/* Sponsors Page Styles - End */

/* ================================================
   Entry Page Styles
================================================ */

/* Entry Information Section */
.entry-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.entry-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
}

.entry-info .container {
    position: relative;
    z-index: 2;
}

.entry-overview {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.entry-overview h3 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.entry-overview > p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.entry-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Qualification Section */
.qualification-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.qualification-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qualification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2);
}

.qualification-item:hover::before {
    opacity: 1;
}

.qualification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.qualification-icon i {
    font-size: 2rem;
    color: white;
}

.qualification-item h3 {
    color: #1e40af;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.qualification-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.qualification-item ul li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.qualification-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* Fees Section */
.fees-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    position: relative;
    padding: 80px 0;
}

.fees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
}

.fees-section .container {
    position: relative;
    z-index: 2;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fee-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.25);
}

.fee-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 25px;
    text-align: center;
}

.fee-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.fee-header p {
    opacity: 0.9;
    margin: 0;
}

.fee-content {
    padding: 30px 25px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.fee-item:last-of-type {
    border-bottom: none;
}

.fee-category {
    color: #475569;
    font-weight: 500;
    flex: 1;
}

.fee-amount {
    color: #059669;
    font-size: 1.3rem;
    font-weight: 700;
}

.fee-note {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
}

/* Qualifying Section */
.qualifying-section {
    background: linear-gradient(135deg, #fef7ff 0%, #f3f4f6 100%);
    padding: 80px 0;
}

.qualifying-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-button {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(168, 85, 247, 0.2);
    color: #7c3aed;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.tab-button:hover:not(.active) {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

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

.qualifying-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qualifying-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.date-badge {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.date-badge .day {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.date-badge .month {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
}

.date-badge .year {
    font-size: 0.7rem;
    opacity: 0.8;
    display: block;
}

.qualifying-details {
    flex: 1;
}

.qualifying-details h4 {
    color: #7c3aed;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.details-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    margin-bottom: 6px;
}

.details-item i {
    color: #a855f7;
    width: 16px;
}

/* Entry Form Section */
.entry-form-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
    position: relative;
    padding: 80px 0;
}

.entry-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.entry-form-section .container {
    position: relative;
    z-index: 2;
}

.entry-form-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.form-notice {
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.form-notice i {
    color: #ea580c;
    font-size: 1.5rem;
}

.form-notice p {
    color: #c2410c;
    margin: 0;
    font-weight: 600;
}

/* Main Entry Category Tabs */
.entry-category-section {
    background: var(--pure-white);
    padding: 0;
}

.main-entry-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
    padding: 40px 20px 0;
}

.main-tab-btn {
    flex: 1;
    max-width: 350px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #64748b;
}

.main-tab-btn i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.main-tab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

.main-tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.main-tab-btn.active i {
    transform: scale(1.15);
}

.main-tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.main-tab-content.active {
    display: block;
}

/* Entry Tabs (keep for backward compatibility) */
.entry-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.entry-tab-btn {
    flex: 1;
    max-width: 300px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
}

.entry-tab-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.entry-tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.entry-tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.entry-tab-btn.active i {
    transform: scale(1.1);
}

.entry-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.entry-tab-content.active {
    display: block;
}

/* Coming Soon Card */
.coming-soon-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-icon i {
    font-size: 3rem;
    color: white;
}

.coming-soon-card h3 {
    color: #1e40af;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.coming-soon-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.coming-soon-features {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #3b82f6;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #334155;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.coming-soon-contact {
    padding-top: 20px;
    border-top: 2px dashed rgba(59, 130, 246, 0.2);
}

.coming-soon-contact p {
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 600;
}

.coming-soon-contact .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.coming-soon-contact .btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.entry-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
}

.form-section:last-of-type {
    margin-bottom: 30px;
}

.form-section h3 {
    color: #1e40af;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.required {
    color: #ef4444;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.section-note {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.qualifying-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qualifying-checkbox {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.qualifying-checkbox:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: #3b82f6;
    transform: translateX(5px);
}

.qualifying-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3b82f6;
    flex-shrink: 0;
}

.qualifying-checkbox input[type="checkbox"]:checked ~ .qualifying-checkbox-content {
    color: #1e40af;
}

.qualifying-checkbox-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.qualifying-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.qualifying-venue {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.antisocial-notice {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-left: 4px solid #dc2626;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.antisocial-notice p {
    color: #1f2937;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.privacy-policy-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.privacy-policy-box h4 {
    color: #1e40af;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.privacy-policy-box h5 {
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.privacy-policy-box h5:first-of-type {
    margin-top: 15px;
}

.privacy-policy-box p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 12px 0;
    font-size: 0.9rem;
}

.privacy-policy-box ul {
    margin: 10px 0 15px 0;
    padding-left: 25px;
}

.privacy-policy-box ul li {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.privacy-policy-box::-webkit-scrollbar {
    width: 8px;
}

.privacy-policy-box::-webkit-scrollbar-track {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
}

.privacy-policy-box::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.4);
    border-radius: 4px;
}

.privacy-policy-box::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

.privacy-link-note {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0 20px 0;
    text-align: center;
}

.privacy-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-detail-link:hover {
    color: #1e40af;
    gap: 12px;
}

.privacy-detail-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.privacy-detail-link:hover i {
    transform: translateX(2px) translateY(-2px);
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: #1f2937;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    color: #3b82f6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkbox-label span {
    flex: 1;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-actions .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #9ca3af;
    border-color: #9ca3af;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-info-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    color: white;
}

.contact-item i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item span {
    color: white;
}

/* Responsive Design for Entry Page */
@media (max-width: 768px) {
    .entry-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item .stat-number {
        font-size: 2.5rem;
    }

    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qualification-item {
        padding: 25px 20px;
    }

    .qualification-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .qualification-icon i {
        font-size: 1.8rem;
    }

    .fees-section {
        padding: 60px 0;
    }

    .fees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qualifying-section {
        padding: 60px 0;
    }

    .entry-form-section {
        padding: 60px 0;
    }

    .fee-content {
        padding: 25px 20px;
    }

    .main-entry-tabs {
        flex-direction: column;
        gap: 15px;
        padding: 30px 15px 0;
    }

    .main-tab-btn {
        max-width: 100%;
        padding: 20px 30px;
        font-size: 1.1rem;
    }

    .main-tab-btn i {
        font-size: 1.5rem;
    }

    .entry-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .entry-tab-btn {
        max-width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
    }

    .entry-tab-btn i {
        font-size: 1.2rem;
    }

    .coming-soon-card {
        padding: 40px 25px;
    }

    .coming-soon-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .coming-soon-icon i {
        font-size: 2.5rem;
    }

    .coming-soon-card h3 {
        font-size: 1.6rem;
    }

    .qualifying-checkbox {
        padding: 15px;
    }

    .qualifying-date {
        font-size: 1rem;
    }

    .qualifying-venue {
        font-size: 0.85rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .coming-soon-description {
        font-size: 1rem;
    }

    .coming-soon-features {
        padding: 20px;
    }

    .feature-item {
        padding: 12px 0;
    }

    .feature-item i {
        font-size: 1.1rem;
    }

    .feature-item span {
        font-size: 0.95rem;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tab-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .qualifying-grid {
        grid-template-columns: 1fr;
    }

    .qualifying-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .date-badge {
        min-width: auto;
        padding: 15px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .entry-form {
        padding: 30px 20px;
    }

    .form-section h3 {
        font-size: 1.2rem;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-item {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .entry-overview {
        padding: 30px 20px;
    }

    .entry-overview h3 {
        font-size: 1.5rem;
    }

    .entry-overview > p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-item .stat-number {
        font-size: 2rem;
    }

    .stat-item .stat-label {
        font-size: 0.8rem;
    }

    .qualification-item {
        padding: 20px 15px;
    }

    .qualification-item h3 {
        font-size: 1.2rem;
    }

    .fee-header {
        padding: 20px;
    }

    .fee-header h3 {
        font-size: 1.3rem;
    }

    .fee-content {
        padding: 20px 15px;
    }

    .fee-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }

    .fee-amount {
        font-size: 1.1rem;
    }

    .qualifying-item {
        padding: 20px 15px;
    }

    .date-badge {
        padding: 12px 20px;
    }

    .date-badge .day {
        font-size: 1.8rem;
    }

    .entry-form {
        padding: 25px 15px;
    }

    .form-section h3 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

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

    .contact-info-card > p {
        font-size: 1rem;
    }

    .contact-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .entry-overview {
        padding: 25px 15px;
    }

    .entry-overview h3 {
        font-size: 1.3rem;
    }
}

/* Entry Page Styles - End */

/* ================================================
   Contact Page Styles
================================================ */

/* Contact Information Section */
/* Contact page specific styles */
.contact-section .contact-info {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
    overflow: hidden;
}

.contact-section .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
}

.contact-section .contact-info .container {
    position: relative;
    z-index: 2;
}

.contact-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.contact-intro {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-intro h3 {
    color: #d97706;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.response-time {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.response-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.response-info i {
    color: #d97706;
    font-size: 1.8rem;
    margin-top: 5px;
}

.response-info h4 {
    color: #d97706;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.response-info p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Contact Methods Section */
.contact-methods {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.2);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #d97706;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail .label {
    color: #64748b;
    font-weight: 600;
}

.contact-detail .value {
    color: #d97706;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-container {
    margin-top: 40px;
}

.faq-tabs .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-tabs .tab-button {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tabs .tab-button.active {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.faq-tabs .tab-button:hover:not(.active) {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question h4 {
    color: #1e40af;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #3b82f6;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(59, 130, 246, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form .form-section {
    margin-bottom: 40px;
}

.contact-form .form-section:last-of-type {
    margin-bottom: 30px;
}

.contact-form .form-section h3 {
    color: #059669;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-form .required {
    color: #ef4444;
    font-size: 0.9rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: white;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #10b981;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #10b981;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.privacy-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.contact-form .form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Contact Cards Section */
.contact-cards {
    background: linear-gradient(135deg, #fef7ff 0%, #f3f4f6 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h3 {
    color: #7c3aed;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-details {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: #7c3aed;
    width: 20px;
    text-align: center;
}

.info-item span {
    color: #475569;
    font-weight: 500;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-intro {
        padding: 30px 20px;
    }

    .contact-intro h3 {
        font-size: 1.4rem;
    }

    .contact-intro p {
        font-size: 1rem;
    }

    .response-time {
        padding: 25px 20px;
    }

    .response-info {
        flex-direction: column;
        gap: 10px;
    }

    .response-info i {
        margin-top: 0;
        align-self: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .contact-icon i {
        font-size: 1.8rem;
    }

    .faq-tabs .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .faq-tabs .tab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 80%;
        text-align: center;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h4 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form .form-section h3 {
        font-size: 1.2rem;
    }

    .contact-form .form-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-form .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-item {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .contact-intro {
        padding: 25px 15px;
    }

    .contact-intro h3 {
        font-size: 1.3rem;
    }

    .response-time {
        padding: 20px 15px;
    }

    .response-info h4 {
        font-size: 1.1rem;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .faq-tabs .tab-button {
        width: 90%;
        padding: 8px 15px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form .form-section h3 {
        font-size: 1.1rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .checkbox-label {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-item {
        padding: 8px 0;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles - End */

/* Course Website Link */
.course-link-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.course-website-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 20px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.course-website-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.course-website-link:hover::before {
    left: 100%;
}

.course-website-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
}

.link-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.course-website-link:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
}

.link-icon i {
    font-size: 1.3rem;
    color: white;
}

.link-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.link-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-title {
    font-size: 1.3rem;
    color: #1e40af;
    font-weight: 700;
}

.link-arrow {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.course-website-link:hover .link-arrow {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.link-arrow i {
    font-size: 1.1rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.course-website-link:hover .link-arrow i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .course-website-link {
        padding: 16px 20px;
        gap: 15px;
    }

    .link-icon {
        width: 45px;
        height: 45px;
    }

    .link-icon i {
        font-size: 1.1rem;
    }

    .link-title {
        font-size: 1.1rem;
    }

    .link-label {
        font-size: 0.75rem;
    }

    .link-arrow {
        width: 35px;
        height: 35px;
    }

    .link-arrow i {
        font-size: 1rem;
    }
}


/* ============================================
   Privacy Policy Page Styles
   ============================================ */

.privacy-policy-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
}

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

/* Privacy Introduction */
.privacy-intro {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 20px;
}

.intro-date {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    text-align: right;
}

/* Privacy Section */
.privacy-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.05);
    line-height: 1;
    pointer-events: none;
}

.privacy-section .section-title {
    color: #1e40af;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.section-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

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

.section-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
}

.section-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Info Box */
.info-box {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h4 {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Purpose List */
.purpose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.purpose-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: translateX(8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.purpose-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.purpose-icon i {
    font-size: 1.4rem;
    color: white;
}

.purpose-text h4 {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.purpose-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 20px 0;
}

.highlight-box i {
    font-size: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.highlight-box p {
    flex: 1;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
}

/* Disclosure Cases */
.disclosure-cases {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.case-item {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.case-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.case-item p {
    flex: 1;
    margin: 0;
    padding-top: 4px;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.measure-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.measure-item:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.measure-item i {
    font-size: 2rem;
    color: #3b82f6;
}

.measure-item span {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 600;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-top: 24px;
}

.contact-box h4 {
    color: #1e40af;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-box > p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #334155;
}

.detail-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Cookie Info */
.cookie-info {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.cookie-info h4 {
    color: #1e40af;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cookie-info .note {
    background: rgba(59, 130, 246, 0.05);
    border-left: 3px solid #3b82f6;
    padding: 16px;
    margin-top: 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #475569;
}

/* Privacy Contact Section */
.privacy-contact-section {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.privacy-contact-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.privacy-contact-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.privacy-contact-section .btn {
    background: white;
    color: #1e40af;
}

.privacy-contact-section .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 60px 0;
    }

    .privacy-intro {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

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

    .privacy-section {
        padding: 30px 20px;
    }

    .section-number {
        font-size: 4rem;
        top: -5px;
        right: 10px;
    }

    .privacy-section .section-title {
        font-size: 1.5rem;
    }

    .purpose-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .purpose-item {
        padding: 20px;
    }

    .security-measures {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .highlight-box {
        flex-direction: column;
        padding: 20px;
    }

    .highlight-box i {
        font-size: 1.5rem;
    }

    .contact-box {
        padding: 24px 20px;
    }

    .privacy-contact-section {
        padding: 40px 24px;
        margin-top: 40px;
    }

    .privacy-contact-section h3 {
        font-size: 1.5rem;
    }

    .privacy-contact-section p {
        font-size: 1rem;
    }
}