:root {
    --primary-color: #FF4655;
    --secondary-color: #0F1923;
    --text-color: #ECE8E1;
    --background-color: #000000;
    --accent-color: #7B2CBF;
    --gradient-1: linear-gradient(45deg, #FF4655, #7B2CBF);
    --gradient-2: linear-gradient(135deg, rgba(255, 70, 85, 0.2), rgba(15, 25, 35, 0.8));
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.05);
    --valorant-red: #FF4655;
    --valorant-blue: #0F1923;
    --valorant-gold: #FFD700;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar:hover {
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(255, 70, 85, 0.2);
}

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

.logo {
    text-decoration: none;
    position: relative;
    display: block;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.nav-links a:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a:last-child::after {
    background: var(--primary-color);
    opacity: 0.8;
}

.nav-links a:last-child:hover {
    color: var(--text-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(255, 70, 85, 0.1);
    box-shadow: 0 5px 15px rgba(255, 70, 85, 0.2);
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icons a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icons a {
        font-size: 1.1rem;
        padding: 0.4rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('src/valorant14.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.contentstack.io/v3/assets/bltb6530b271fddd0b1/blt516d37c6c84fc145/5ff5660bb47cdf7fc7d6c3dc/V_AGENTS_587x900_Jett.png') no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.08;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 25, 35, 0.9) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at center, var(--valorant-red) 1px, transparent 1px),
        radial-gradient(circle at center, var(--valorant-gold) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    opacity: 0.12;
    z-index: 1;
    animation: particleMove 20s linear infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0.12;
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeIn 1.5s ease-out;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-text h1 {
    font-size: 9rem;
    margin-bottom: 0;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 15px;
    font-weight: 900;
    text-transform: lowercase;
    line-height: 0.9;
    animation: titleGlow 2s ease-in-out infinite;
    background: linear-gradient(45deg, #ffffff 30%, #f0f0f0 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.5;
}

.hero-image {
    width: 100%;
    max-width: 180px;
    margin: -1rem 0;
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 70, 85, 0.4));
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    transform: rotateY(-5deg);
}

.hero-subtitle {
    font-size: 2.4rem;
    margin: 1rem 0;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
    position: relative;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
}

.hero-subtitle::before {
    left: -50px;
}

.hero-subtitle::after {
    right: -50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 10rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 70, 85, 0.4);
    background: linear-gradient(45deg, var(--primary-color), #ff2d3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--text-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
    margin-top: 2rem;
}

.btn {
    padding: 1.4rem 4rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.primary {
    background: var(--gradient-1);
    color: var(--text-color);
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.4);
}

.secondary {
    background-color: rgba(255, 70, 85, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.3);
}

.donate {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    opacity: 0;
}

.donate:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 70, 85, 0.5);
}

.primary:hover {
    background: linear-gradient(45deg, #ff2d3f, #9b1fbf);
}

.secondary:hover {
    background-color: rgba(255, 70, 85, 0.2);
    border-color: #ff2d3f;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes particleMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, 50px 50px; }
}

@keyframes glowPulse {
    0% { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.18; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); }
}

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

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 7rem;
        letter-spacing: 12px;
    }

    .hero-stats {
        gap: 6rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 5rem;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 20px;
    }

    .hero-subtitle::before {
        left: -30px;
    }

    .hero-subtitle::after {
        right: -30px;
    }

    .hero-stats {
        gap: 4rem;
    }

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

    .stat-label {
        font-size: 1.1rem;
    }

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

    .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .donate {
        margin-top: 1rem;
    }
}

/* Section Headers */
section h2 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

section:hover h2::after {
    transform: scaleX(1);
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: url('src/valorant21.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 25, 35, 0.95) 100%);
    z-index: 1;
}

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

.about h2 {
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 70, 85, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

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

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 70, 85, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    background: linear-gradient(45deg, var(--primary-color), #ff2d3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover .about-img {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about {
        background-attachment: scroll;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }

    .about h2 {
        font-size: 3rem;
        padding: 0.8rem 1.5rem;
    }

    .about-text {
        padding: 1.5rem;
    }

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

/* Curiosities Section */
.curiosities {
    padding: 8rem 0;
    background-color: var(--background-color);
}

.curiosities-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.curiosity-card {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.curiosity-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.curiosity-card:hover .curiosity-img {
    transform: scale(1.05);
}

.curiosity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.curiosity-card p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Career Section */
.career {
    padding: 8rem 0;
    background: url('src/valorant12.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.career::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 25, 35, 0.9) 100%);
    z-index: 1;
}

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

.career h2 {
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 70, 85, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

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

.year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
}

.content {
    width: calc(50% - 3rem);
    margin-left: auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-item:nth-child(even) .content {
    margin-left: 0;
    margin-right: auto;
}

.content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.3);
}

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

@media (max-width: 768px) {
    .career {
        background-attachment: scroll;
    }
    
    .timeline::before {
        left: 0;
    }

    .year {
        left: 0;
        transform: translateX(-50%);
    }

    .content {
        width: calc(100% - 3rem);
        margin-left: 3rem;
    }

    .timeline-item:nth-child(even) .content {
        margin-left: 3rem;
    }

    .career h2 {
        font-size: 3rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Setup Section */
.setup {
    padding: 8rem 0;
    background-color: var(--background-color);
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.setup-category {
    padding: 3rem;
}

.setup-category h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.setup-category ul {
    list-style: none;
}

.setup-category li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setup-category li:last-child {
    border-bottom: none;
}

.setup-category strong {
    color: var(--primary-color);
}

/* Schedule Section */
.schedule {
    padding: 8rem 0;
    background: var(--gradient-2);
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    text-align: center;
    padding: 3rem;
}

.schedule-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.schedule-item p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Donate & Contact Section */
.donate-contact {
    padding: 8rem 0;
    background: url('src/valorant19.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.donate-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 25, 35, 0.95) 100%);
    z-index: 1;
}

.donate-contact-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

.donate-section, .contact-section {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.donate-section:hover, .contact-section:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 70, 85, 0.3);
}

.donate-section h3, .contact-section h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.3);
    position: relative;
}

.donate-section h3::after, .contact-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.donate-section p, .contact-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-email {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid rgba(255, 70, 85, 0.3);
    margin-bottom: 2rem;
}

.contact-email:hover {
    background: rgba(255, 70, 85, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 70, 85, 0.2);
}

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

.social-links a {
    color: var(--text-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(255, 70, 85, 0.1);
    box-shadow: 0 5px 15px rgba(255, 70, 85, 0.2);
}

@media (max-width: 1200px) {
    .donate-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .donate-contact {
        background-attachment: scroll;
    }
    
    .donate-section, .contact-section {
        padding: 2rem;
    }

    .donate-section h3, .contact-section h3 {
        font-size: 2rem;
    }

    .donate-section p, .contact-section p {
        font-size: 1.1rem;
    }

    .contact-email {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 1.8rem;
    }
}

/* Videos Section */
.videos {
    padding: 8rem 0;
    background-color: var(--background-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: var(--card-hover);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    opacity: 1;
}

.play-button i {
    color: var(--text-color);
    font-size: 1.5rem;
}

.video-card h3 {
    margin: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.video-card p {
    margin: 0 1rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Social Section */
.social {
    padding: 8rem 0;
    background: var(--gradient-2);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.social-card {
    text-align: center;
    padding: 3rem 2rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.footer-social a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .curiosities-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .setup-grid {
        grid-template-columns: 1fr;
    }

    .schedule-content {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .curiosities-content {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .year {
        left: 0;
        transform: translateX(-50%);
    }

    .content {
        width: calc(100% - 3rem);
        margin-left: 3rem;
    }

    .timeline-item:nth-child(even) .content {
        margin-left: 3rem;
    }
}

/* Metrics Section */
.metrics {
    padding: 8rem 0;
    background: url('src/valorant22.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 25, 35, 0.95) 100%);
    z-index: 1;
}

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

.metrics h2 {
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 70, 85, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

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

.metric-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 70, 85, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.metric-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    background: linear-gradient(45deg, var(--primary-color), #ff2d3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.metrics-source {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    display: inline-block;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-source a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.3);
}

.metrics-source a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .metrics {
        background-attachment: scroll;
    }
    
    .metrics h2 {
        font-size: 3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 2rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
}

/* Agents Section */
.agents {
    padding: 8rem 0;
    background: url('src/valorant17.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.agents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 25, 35, 0.9) 100%);
    z-index: 1;
}

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

.agents h2 {
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 70, 85, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.agents-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.agent-card {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.agent-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 70, 85, 0.3);
}

.agent-image {
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    position: relative;
}

.agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.agent-card:hover .agent-img {
    transform: scale(1.05);
}

.agent-info {
    padding: 2rem;
    text-align: center;
}

.agent-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.3);
}

.agent-info p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.agent-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.agent-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agent-stats .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.agent-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .agents {
        background-attachment: scroll;
    }
    
    .agents-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .agents h2 {
        font-size: 3rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Numbers Section */
.numbers {
    padding: 8rem 0;
    background: url('src/valorant20.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 25, 35, 0.95) 100%);
    z-index: 1;
}

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

.numbers h2 {
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 70, 85, 0.3);
}

.platform-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    position: relative;
}

.platform-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.platform-card h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.platform-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.platform-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.platform-stats .stat-item:hover {
    background: rgba(255, 70, 85, 0.1);
    transform: translateY(-3px);
}

.platform-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.3);
    background: linear-gradient(45deg, var(--primary-color), #ff2d3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-stats .stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 768px) {
    .numbers {
        background-attachment: scroll;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        padding: 2rem;
    }
    
    .platform-stats .stat-number {
        font-size: 2rem;
    }
}

/* Scroll Up Button */
.scroll-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.4);
}

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

.scroll-up:hover {
    transform: translateY(-5px);
    background: #ff2d3f;
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.6);
}

@media (max-width: 768px) {
    .scroll-up {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
} 