/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    margin-left: 15px;
    vertical-align: middle;
}

.loading-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 3px;
    border: 3px solid #00FF7F;
    border-radius: 50%;
    animation: loading-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #00FF7F transparent transparent transparent;
}

.loading-spinner div:nth-child(1) {
    animation-delay: -0.45s;
}

.loading-spinner div:nth-child(2) {
    animation-delay: -0.3s;
}

.loading-spinner div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loading-spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideIn 0.3s ease-out forwards;
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.success {
    background-color: #4CAF50;
    border-left: 4px solid #2E7D32;
}

.notification.error {
    background-color: #F44336;
    border-left: 4px solid #C62828;
}

.notification.info {
    background-color: #2196F3;
    border-left: 4px solid #1565C0;
}

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

/* Responsive Notifications */
@media (max-width: 768px) {
    .notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        top: 10px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1A1A1A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Floating Animation Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-ball {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

/* Section Floating Elements */
.section-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.section-floating-elements > div {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

/* Hero Section Floating Elements */
#hero .floating-football { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 10s; }
#hero .floating-whistle { top: 70%; right: 20%; animation-delay: 1s; animation-duration: 12s; transform: rotate(15deg); }
#hero .floating-cards { top: 40%; right: 15%; animation-delay: 2s; animation-duration: 14s; transform: rotate(-10deg); }

/* Participation Section Floating Elements */
#participation .floating-jersey { top: 15%; right: 20%; animation-delay: 0.5s; animation-duration: 11s; }
#participation .floating-boot { top: 60%; left: 15%; animation-delay: 1.5s; animation-duration: 13s; transform: rotate(-15deg); }
#participation .floating-flag { top: 30%; left: 20%; animation-delay: 2.5s; animation-duration: 15s; transform: rotate(10deg); }

/* CTA Section Floating Elements */
#cta .floating-trophy { top: 25%; left: 18%; animation-delay: 0.7s; animation-duration: 14s; transform: rotate(5deg); }
#cta .floating-medal { top: 65%; right: 18%; animation-delay: 1.7s; animation-duration: 12s; transform: rotate(-5deg); }
#cta .floating-star { top: 40%; right: 22%; animation-delay: 2.2s; animation-duration: 16s; transform: rotate(15deg); }

/* Sponsors Section Floating Elements */
#sponsors .floating-badge { top: 20%; right: 25%; animation-delay: 0.3s; animation-duration: 13s; transform: rotate(-10deg); }
#sponsors .floating-clipboard { top: 70%; left: 25%; animation-delay: 1.8s; animation-duration: 15s; transform: rotate(8deg); }
#sponsors .floating-megaphone { top: 35%; left: 22%; animation-delay: 2.7s; animation-duration: 17s; transform: rotate(-12deg); }

/* About Section Floating Elements */
#about .floating-globe { top: 25%; right: 20%; animation-delay: 0.5s; animation-duration: 16s; transform: rotate(15deg); }
#about .floating-handshake { top: 65%; left: 20%; animation-delay: 1.2s; animation-duration: 14s; transform: rotate(-8deg); }
#about .floating-community { top: 40%; right: 25%; animation-delay: 2s; animation-duration: 18s; transform: rotate(10deg); }

/* Ensure content is above floating elements */
.hero-container,
.participation .container,
.cta-section .container,
.sponsors .container,
.about .container {
    position: relative;
    z-index: 2;
}

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

.ball-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.ball-3 {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.ball-4 {
    top: 30%;
    right: 30%;
    animation-delay: 3s;
}

.ball-5 {
    top: 70%;
    left: 60%;
    animation-delay: 4s;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo img.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo img.logo-image:hover {
    transform: scale(1.05);
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, #00FF7F, #00BFFF);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0F1F 0%, #1A1A2E 100%);
    padding-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    transition: font-size 0.3s ease;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #00BFFF, #00FF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-version {
    display: block;
    color: #FFFFFF;
    font-size: 2rem;
    margin-top: 5px;
}

.hero-slogan {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #E0E0E0;
}

.detail-item i {
    color: #00BFFF;
    width: 20px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .title-version {
        font-size: 1.8rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .hero-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .title-version {
        font-size: 1.5rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-details {
        align-items: center;
        margin-bottom: 30px;
    }
    
    .detail-item {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-version {
        font-size: 1.3rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-details {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .detail-item {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-version {
        font-size: 1.2rem;
    }
    
    .hero-slogan {
        font-size: 0.95rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00FF7F, #00BFFF);
    color: #FFFFFF;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 127, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #00BFFF;
}

.btn-secondary:hover {
    background: #00BFFF;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #00BFFF;
    border: 2px solid #00BFFF;
}

.btn-outline:hover {
    background: #00BFFF;
    color: #FFFFFF;
}

.btn-cta {
    background: linear-gradient(135deg, #00FF7F, #00BFFF);
    color: #FFFFFF;
    font-size: 1.2rem;
    padding: 20px 40px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 127, 0.4);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.football-field {
    width: 100%;
    max-width: 400px;
    height: 0;
    padding-bottom: 62.5%; /* 250/400 = 0.625 */
    background: linear-gradient(135deg, #00BFFF, #00FF7F);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    animation: pulse 3s ease-in-out infinite;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.field-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    height: 50%;
    max-width: 80px;
    max-height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.goal {
    position: absolute;
    width: 10%;
    height: 25%;
    max-width: 40px;
    max-height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    top: 50%;
    transform: translateY(-50%);
}

.goal-left {
    left: 0;
    border-right: none;
    border-radius: 15px 0 0 15px;
}

.goal-right {
    right: 0;
    border-left: none;
    border-radius: 0 15px 15px 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(0, 255, 127, 0.4);
    }
}

/* Responsive adjustments for the football field */
@media (max-width: 768px) {
    .hero-visual {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .football-field {
        max-width: 100%;
        padding-bottom: 60%;
    }
    
    .field-lines {
        width: 92%;
        height: 82%;
    }
    
    .center-circle {
        width: 30%;
        height: 45%;
    }
    
    .goal {
        width: 12%;
        height: 28%;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        max-width: 300px;
    }
    
    .football-field {
        border-radius: 12px;
    }
    
    .field-lines {
        border-width: 1.5px;
        border-radius: 6px;
    }
    
    .center-circle {
        border-width: 1.5px;
    }
    
    .goal {
        border-width: 1.5px;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00BFFF, #00FF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Participation Section */
.participation {
    background: #222222;
}

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

.requirement-card {
    background: #2A2A2A;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    border-color: #00BFFF;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BFFF, #00FF7F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #FFFFFF;
}

.requirement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #00BFFF;
}

.requirement-card ul {
    list-style: none;
    text-align: left;
}

.requirement-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.requirement-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00FF7F;
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    background: #1A1A1A;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05), rgba(0, 255, 127, 0.05));
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00BFFF, #00FF7F);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF, #CCCCCC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #2A2A2A;
    border-radius: 12px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00BFFF;
    transform: translateY(-2px);
}

.feature-item i {
    color: #00BFFF;
    font-size: 1.2rem;
}

.feature-item span {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
}

.cta-countdown {
    background: #2A2A2A;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    margin-bottom: 40px;
}

.countdown-label {
    text-align: center;
    color: #00BFFF;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    text-align: center;
    padding: 15px;
    background: #1A1A1A;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 127, 0.2);
    min-width: 70px;
}

.time-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00FF7F;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: #CCCCCC;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #00FF7F, #00BFFF);
    color: #FFFFFF;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 255, 127, 0.3);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.4);
}

.btn-secondary-cta {
    background: transparent;
    color: #00BFFF;
    border: 2px solid #00BFFF;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: #00BFFF;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* CTA Visual */
.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trophy-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trophy-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.3), rgba(0, 191, 255, 0.2), transparent);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

.trophy-icon {
    font-size: 8rem;
    color: #00FF7F;
    z-index: 2;
    position: relative;
    animation: trophy-float 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 127, 0.5);
}

.floating-elements-cta {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float-around 8s ease-in-out infinite;
}

.float-item.ball {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-item.star {
    top: 15%;
    right: 15%;
    animation-delay: 2s;
}

.float-item.fire {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.float-item.crown {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

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

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

@keyframes float-around {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-25px) rotate(270deg);
    }
}

/* Sponsors Section */
.sponsors {
    background: #1A1A1A;
    overflow: hidden;
}

.sponsors-carousel {
    margin: 40px 0;
    overflow: hidden;
}

.sponsors-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 40px;
}

.sponsor-item {
    flex-shrink: 0;
    background: #2A2A2A;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.05);
    background: #333333;
}

.sponsor-item img {
    height: 60px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.sponsor-item:hover img {
    filter: brightness(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.become-sponsor {
    text-align: center;
    margin-top: 40px;
}

.become-sponsor p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* JCI Logo Styles */
.about-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 255, 127, 0.5));
}

.footer-logo-img {
    width: 80px;
    height: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: rotate(5deg) scale(1.1);
}

/* About Section */
.about {
    background: #222222;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.mission-statement {
    background: #2A2A2A;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #00BFFF;
    margin-bottom: 30px;
}

.mission-statement h3 {
    color: #00BFFF;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    color: #00BFFF;
    width: 20px;
}

.about-visual {
    text-align: center;
}

.jci-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 4px solid #00BFFF;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #2A2A2A;
    border-radius: 15px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00FF7F;
}

.stat-label {
    font-size: 0.9rem;
    color: #CCCCCC;
}

/* Registration Form */
.registration {
    background: #1A1A1A;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: #2A2A2A;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #00BFFF;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #1A1A1A;
    border: 2px solid #333333;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BFFF;
}

.academy-fields {
    background: #333333;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid #00FF7F;
}

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

/* Footer */
.footer {
    background: #0A0A0A;
    padding: 40px 0 20px;
    font-size: 0.9rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo h3 {
    color: #00BFFF;
    font-size: 1.2rem;
    margin: 0;
}

.footer p {
    color: #999;
    line-height: 1.5;
    margin: 10px 0 0;
    font-size: 0.85rem;
    max-width: 300px;
}

.footer-section h4 {
    color: #00BFFF;
    margin: 0 0 15px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CCCCCC;
    font-size: 0.85rem;
    justify-content: center;
    width: 100%;
}

.contact-item i {
    color: #00BFFF;
    width: 16px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 5px;
    justify-content: center;
    width: 100%;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #1F1F1F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-2px);
    background: #2A2A2A;
}

.footer-bottom {
    border-top: 1px solid #1F1F1F;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
    color: #777;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.footer-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #00BFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer p {
        max-width: 100%;
    }
}

/* Registration Page Styles */
.registration-header {
    background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    padding: 120px 0 80px;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00BFFF, #00FF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00BFFF;
    text-decoration: none;
}

.breadcrumb i {
    color: #666666;
    font-size: 0.8rem;
}

.breadcrumb span {
    color: #FFFFFF;
}

.registration-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #2A2A2A;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.info-item i {
    color: #00BFFF;
    font-size: 1.5rem;
}

.info-item div strong {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
}

.info-item div span {
    color: #CCCCCC;
    font-size: 0.9rem;
}

.registration-form-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-sidebar {
    order: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-main {
    order: 1;
    width: 100%;
}

/* Responsive styles for form layout */
@media (max-width: 1024px) {
    .form-container {
        gap: 40px;
    }
    
    .form-sidebar {
        padding: 25px;
    }
    
    .form-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-sidebar {
        order: 2;
    }
    
    .form-main {
        order: 1;
    }
    
    .registration-info {
        gap: 20px;
    }
    
    .info-item {
        width: 100%;
        justify-content: flex-start;
    }
}

.form-sidebar {
    background: #2A2A2A;
    padding: 30px;
    border-radius: 20px;
    height: fit-content;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.form-sidebar h3 {
    color: #00BFFF;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-item i {
    color: #00FF7F;
    font-size: 1.2rem;
    margin-top: 2px;
}

.sidebar-item strong {
    display: block;
    color: #FFFFFF;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.sidebar-item p {
    color: #CCCCCC;
    font-size: 0.8rem;
    line-height: 1.4;
}

.form-main {
    background: #2A2A2A;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #00BFFF;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

.form-section h3 i {
    color: #00FF7F;
}

.academy-fields {
    background: #333333;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid #00FF7F;
}

.academy-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.academy-header i {
    color: #00FF7F;
    font-size: 1.1rem;
}

.academy-header h4 {
    color: #FFFFFF;
    margin: 0;
    font-size: 1rem;
}

.form-hint {
    display: block;
    color: #888888;
    font-size: 0.8rem;
    margin-top: 5px;
    font-style: italic;
}

.form-agreement {
    background: #333333;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #1A1A1A;
    border: 2px solid #00BFFF;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #00BFFF;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-weight: bold;
    font-size: 0.9rem;
}

.agreement-text {
    color: #CCCCCC;
    line-height: 1.5;
    font-size: 0.9rem;
}

.agreement-text a {
    color: #00BFFF;
    text-decoration: none;
}

.agreement-text a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #2A2A2A;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #333333;
}

.modal-header i {
    font-size: 3rem;
    color: #00FF7F;
    margin-bottom: 15px;
}

.modal-header h2 {
    color: #FFFFFF;
    margin: 0;
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 25px;
}

.next-steps h4 {
    color: #00BFFF;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: #CCCCCC;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00FF7F;
    font-weight: bold;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(0, 191, 255, 0.1);
    }
    
    .nav-cta {
        background: linear-gradient(45deg, #00BFFF, #0080FF);
        margin: 10px 20px;
        border-radius: 25px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn {
        min-width: 200px;
        padding: 15px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* Participation Section */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .requirement-card {
        padding: 25px 20px;
    }
    
    /* Stats */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* CTA Section */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .countdown-timer {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .time-number {
        font-size: 1.3rem;
    }
    
    .time-label {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Registration Page */
    .registration-header {
        padding: 100px 0 40px;
    }
    
    .registration-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .info-item {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-sidebar {
        order: 2;
        padding: 25px 20px;
    }
    
    .form-main {
        order: 1;
        padding: 25px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 25px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Floating elements - reduce on mobile */
    .floating-elements .floating-ball {
        font-size: 1.5rem;
        opacity: 0.05;
    }
    
    .section-floating-elements > div {
        font-size: 1rem;
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-logo span {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    /* Hero */
    .hero {
        padding: 90px 0 50px;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    /* Stats */
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Countdown */
    .countdown-timer {
        gap: 5px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .time-number {
        font-size: 1.1rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    /* Registration */
    .registration-header {
        padding: 90px 0 30px;
    }
    
    .registration-form {
        padding: 20px 15px;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Modal */
    .modal-content {
        width: 98%;
        margin: 2% auto;
        padding: 20px 15px;
    }
    
    .modal h2 {
        font-size: 1.3rem;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Info items */
    .info-item {
        padding: 12px;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
    
    /* Hide some floating elements on very small screens */
    .floating-elements {
        display: none;
    }
    
    .section-floating-elements {
        opacity: 0.3;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        min-width: 160px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 8px 4px;
    }
    
    .time-number {
        font-size: 1rem;
    }
    
    .registration-form {
        padding: 15px 10px;
    }
    
    .modal-content {
        padding: 15px 10px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #00BFFF;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .floating-elements,
    .navbar,
    .hero-visual,
    .sponsors-carousel {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title {
        color: black;
    }
}

/* ==========================================
   REWARDS SECTION - Enhanced UI/UX
   ========================================== */

.rewards {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.rewards .section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.rewards .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    perspective: 1000px;
}

/* Base Reward Card Styles */
.reward-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.9));
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(255, 255, 255, 0.1) inset;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.reward-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 4px 20px rgba(255, 255, 255, 0.1) inset;
}

.reward-card:hover::before {
    opacity: 1;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.reward-card:hover .card-icon {
    transform: scale(1.1) rotateY(180deg);
}

.reward-card:hover .card-icon::before {
    opacity: 1;
    animation: pulse-ring 2s infinite;
}

/* Specific Card Icon Styles */
.champion-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.champion-icon::before {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.finalist-icon {
    background: linear-gradient(45deg, #C0C0C0, #E5E5E5);
    color: #1a1a1a;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.finalist-icon::before {
    background: linear-gradient(45deg, #C0C0C0, #E5E5E5);
}

.scorer-icon {
    background: linear-gradient(45deg, #00FF7F, #32CD32);
    color: #1a1a1a;
    box-shadow: 0 0 30px rgba(0, 255, 127, 0.5);
}

.scorer-icon::before {
    background: linear-gradient(45deg, #00FF7F, #32CD32);
}

.keeper-icon {
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.keeper-icon::before {
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
}

.fairplay-icon {
    background: linear-gradient(45deg, #FF69B4, #FF1493);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

.fairplay-icon::before {
    background: linear-gradient(45deg, #FF69B4, #FF1493);
}

/* Card Title */
.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Card Content */
.card-content {
    text-align: center;
}

.card-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Card Features */
.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature i {
    color: #00BFFF;
    font-size: 1rem;
}

.reward-card:hover .feature {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Card Glow Effects */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.champion-glow {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
}

.finalist-glow {
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.2) 0%, transparent 70%);
}

.scorer-glow {
    background: radial-gradient(circle at center, rgba(0, 255, 127, 0.2) 0%, transparent 70%);
}

.keeper-glow {
    background: radial-gradient(circle at center, rgba(0, 191, 255, 0.2) 0%, transparent 70%);
}

.fairplay-glow {
    background: radial-gradient(circle at center, rgba(255, 105, 180, 0.2) 0%, transparent 70%);
}

.reward-card:hover .card-glow {
    opacity: 1;
}

/* Special Card Variants */
.premium-card {
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(18, 18, 18, 0.9));
}

.special-card {
    border: 2px solid rgba(255, 105, 180, 0.3);
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.1), rgba(18, 18, 18, 0.9));
}

/* Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

.card-badge {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .rewards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .rewards .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .rewards {
        padding: 60px 0;
    }
    
    .rewards .section-title {
        font-size: 2.5rem;
    }
    
    .rewards .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .reward-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .card-badge {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: -8px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .reward-card {
        margin: 0 5px;
        padding: 20px 15px;
    }
    
    .card-features {
        gap: 8px;
    }
    
    .feature {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .reward-card {
        border: 2px solid #fff;
        background: #000;
    }
    
    .card-header h3,
    .card-content > p,
    .feature {
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .reward-card {
        transition: none;
    }
    
    .reward-card:hover {
        transform: none;
    }
    
    .card-icon {
        transition: none;
    }
    
    .reward-card:hover .card-icon {
        transform: none;
    }
    
    .card-badge {
        animation: none;
    }
}
