/* Modern CSS Reset and Variables */
:root {
    --primary-color: #23F6C6;
    --primary-dark: #1bc4a0;
    --secondary-color: #201954;
    --secondary-light: #2a2266;
    --white: #FFFFFF;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-800: #343a40;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    --text-color: #333;
    --bg-color: #fff;
    --card-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--white);
    color: var(--secondary-color);
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}

/* Smooth Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

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

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background-color: rgba(32, 25, 84, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background-color: rgba(32, 25, 84, 0.98);
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.logo h1:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: none !important;
}

.hero-bg-logo {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-logo img {
    max-width: 75%;
    max-height: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.12;
    filter: drop-shadow(0 4px 32px rgba(0,0,0,0.12));
    pointer-events: none;
    user-select: none;
}

.hero-stripes-bg {
    position: absolute;
    left: 50%; top: 50%;
    width: 140vw; height: 140vh;
    transform: translate(-50%, -50%) rotate(45deg);
    display: flex;
    z-index: 1;
    pointer-events: none;
}

.stripe {
    display: flex;
    flex-direction: column;
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    height: 200%;
    opacity: 0.8;
    /* Animasyon yok */
}

.stripe img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Animasyon classlarını ve keyframes'leri kaldırdım */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-dark);
}

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

/* Ripple Effect */
.cta-button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Games Section */
.games {
    padding: 2rem 5%;
    background-color: var(--gray-100);
}

.games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.games .subtitle {
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.game-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.game-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-info p {
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.follow-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .game-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .game-image {
        height: 250px;
    }
    
    .game-info {
        padding: 1.5rem;
    }
    
    .game-info h3 {
        font-size: 1.5rem;
    }
    
    .game-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-share {
        justify-content: center;
    }
}

/* About Section */
.about {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('assets/pattern.png');
    opacity: 0.05;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    text-align: center;
}

.about-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    perspective: 1000px;
}

.about-card {
    flex: 1;
    max-width: 450px;
    min-width: 450px;
    height: 270px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.1s ease;
}

.about-card-content {
    position: relative;
    z-index: 1;
    transform: translateZ(50px);
    transition: transform 0.1s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    mix-blend-mode: soft-light;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(225deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.about-card i {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.about-card i::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -1;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.about-card:hover {
    transform: perspective(1000px) scale(1.02);
}

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

.about-card:hover::after {
    opacity: 1;
}

.about-card:hover h3,
.about-card:hover p {
    color: white;
}

.about-card:hover i {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glare Effect */
.glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        transparent 25%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 75%
    );
    transform: translateZ(1px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-card:hover .glare {
    opacity: 1;
}

/* Card specific animations */
.about-card:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.about-card:nth-child(2) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.about-card:nth-child(3) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

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

/* Add floating animation to icons */
.about-card i {
    animation: floating 3s ease-in-out infinite;
}

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

/* Responsive adjustments */

@media (max-width: 1200px) {
    .about-content {
        max-width: 1000px;
    }
    
    .about-grid {
        max-width: 1000px;
        gap: 3rem;
    }
    
    .about-card {
        max-width: 400px;
        min-width: 300px;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 80px 5%;
    }
    
    .about h2 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        gap: 2.5rem;
        max-width: 800px;
    }
    
    .about-card {
        max-width: 350px;
        min-width: 280px;
        height: 250px;
        padding: 2rem;
    }
    
    .about-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .about-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 5%;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .about .subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .about-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        max-width: 500px;
    }
    
    .about-card {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        height: 220px;
        padding: 1.8rem;
    }
    
    .about-card i {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .about-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 50px 3%;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about .subtitle {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }

    .about-grid {
        gap: 1.5rem;
        max-width: 350px;
    }

    .about-card {
        max-width: 100%;
        height: 200px;
        padding: 1.5rem;
    }
    
    .about-card i {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .about-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .about-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.social-link {
    color: var(--secondary-color);
    font-size: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
    z-index: -1;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.social-link:hover::before {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.05) 50%, transparent 51%);
    background-size: 20px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(32, 25, 84, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.nav-active {
        display: flex;
        animation: slideIn 0.3s ease-out;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: var(--white);
        transition: var(--transition);
        border-radius: 3px;
    }

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

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

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

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(-100px);
    transition: var(--transition);
}

.slide-in.show {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    background: rgba(35, 246, 198, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.6s ease;
}

/* Logo Shine Effect */
.logo {
    position: relative;
    overflow: hidden;
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

/* Hero Section Enhancements */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--primary-color) 2px, transparent 2px),
        radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: particleFloat 15s linear infinite;
    opacity: 0.3;
}

.hero-particles::after {
    animation-delay: -7.5s;
    opacity: 0.2;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

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

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrows 1.5s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Features Section */
.features {
    padding: 8rem 5%;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

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

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray-800);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Game Card Enhancements */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 25, 84, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    transform: scale(0);
    transition: var(--transition);
}

.game-card:hover .play-button {
    transform: scale(1);
}

.game-stats {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.game-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.game-stats i {
    color: var(--primary-color);
}

/* About Section Enhancements */

.floating-image {
    position: relative;
    height: 400px;
}

.image-card {
    position: absolute;
    width: 250px;
    height: 350px;
    background: var(--primary-color);
    border-radius: 20px;
    transition: var(--transition);
}

.image-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-15deg);
}

.image-card:nth-child(2) {
    top: 25px;
    left: 25px;
    z-index: 2;
    transform: rotate(5deg);
}

.image-card:nth-child(3) {
    top: 50px;
    left: 50px;
    z-index: 1;
    transform: rotate(15deg);
}

/* Contact Section Enhancements */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Footer Enhancements */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

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

/* Responsive Enhancements */
@media (max-width: 768px) {


    .floating-image {
        height: 300px;
        margin-top: 2rem;
    }

    .image-card {
        width: 200px;
        height: 280px;
    }

    .cursor, .cursor-follower {
        display: none;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Theme Colors */
[data-theme="dark"] {
    --text-color: #E4E6E8;
    --bg-color: #0F1624;
    --card-bg: #1A2332;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Updated Button Styles */
.contact-btn {
    padding: 0.7rem 1.4rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 60px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.contact-btn:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 246, 198, 0.3);
}

.contact-btn:hover::before {
    width: 100%;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.primary-btn, .secondary-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    text-decoration: none;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

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

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(35, 246, 198, 0.4);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.secondary-btn:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(35, 246, 198, 0.4);
}

.secondary-btn:hover::before {
    width: 100%;
}

/* Community Section */
.community {
    padding: 70px 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #150f3d 100%);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('assets/pattern.png');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.community-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.community-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.community-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.social-btn {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.social-btn:hover::before {
    transform: translateX(100%);
}

.social-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.social-btn.discord {
    color: #7289da;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.3);
}

.social-btn.discord:hover {
    background: #7289da;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(114, 137, 218, 0.5);
}

.social-btn.twitter {
    color: #1da1f2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
}

.social-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.5);
}

.social-btn.youtube {
    color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.social-btn.youtube:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

.social-btn.patreon {
    color: #F76754;
    box-shadow: 0 0 20px #743128;
}

.social-btn.patreon:hover {
    background: #F76754;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px #743128;
}

.social-btn.roblox {
    color: #ffffff;
    box-shadow: 0 0 20px #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.social-btn.roblox svg {
    width: 32px;
    height: 32px;
    transform: rotate(15deg);
}

.social-btn.roblox:hover {
    background: #222222;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(34, 34, 34, 0.5);
}

/* Remove the mascot section since we're focusing on the social links */
.mascot {
    display: none;
}

.social-links a {
    text-decoration: none;
}

@font-face {
    font-family: 'RobloxIcons';
    src: url('../assets/fonts/roblox-icons.woff2') format('woff2'),
         url('../assets/fonts/roblox-icons.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.icon-logo-r {
    font-family: 'RobloxIcons';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-logo-r:before {
    content: "\e900";
}

.social-btn.roblox .icon-logo-r {
    font-size: 35px;
    transform: rotate(45deg);
    display: block;
}

.social-btn.roblox {
    color: #ffffff;
    box-shadow: 0 0 20px #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn.roblox:hover {
    background: #222222;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px #222222;
}

/* Team Members Section */
.team-section {
    padding: 3rem 5%;
    text-align: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 25, 84, 0.03) 0%, rgba(34, 34, 34, 0.03) 50%, rgba(35, 246, 198, 0.03) 100%);
    border-radius: 20px;
    z-index: -1;
}

.team-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 0 auto 3rem;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.team-card {
    flex: 1 1 300px;
    max-width: 300px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.team-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(35, 246, 198, 0.1) 0%,
        rgba(32, 25, 84, 0.05) 50%,
        rgba(35, 246, 198, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.team-card:hover {
    transform: translateY(-8px);
    background: rgba(35, 246, 198, 0.1);
    backdrop-filter: blur(20px);
    border-color: rgba(35, 246, 198, 0.3);
    box-shadow: 0 10px 30px rgba(35, 246, 198, 0.2);
}

.team-card:hover::before {
    opacity: 0;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--primary-color)
    );
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::after {
    opacity: 0;
}

.team-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #201954;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(32, 25, 84, 0.1) 0%, rgba(34, 34, 34, 0.08) 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(32, 25, 84, 0.3);
    display: inline-block;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(32, 25, 84, 0.15);
    text-shadow: 
        0.2px 0.2px 0 #201954,
        -0.2px 0.2px 0 #201954,
        0.2px -0.2px 0 #201954,
        -0.2px -0.2px 0 #201954;
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    padding: 3px;
    border: 2px solid rgba(32, 25, 84, 0.3);
    box-shadow: 
        0 4px 16px rgba(32, 25, 84, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    isolation: isolate;
}

.team-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #201954, #222222, var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    backdrop-filter: none;
    filter: none;
}

.team-card:hover .team-avatar::before {
    opacity: 1;
}

.team-card:hover .team-avatar {
    border-color: rgba(32, 25, 84, 0.6);
    box-shadow: 
        0 6px 20px rgba(32, 25, 84, 0.3),
        0 0 15px rgba(32, 25, 84, 0.2);
}

.team-card:hover .team-avatar img {
    transform: scale(1.02);
}

.team-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 2px 8px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.team-card:hover .team-info {
    background: rgba(35, 246, 198, 0.2);
    border-color: rgba(35, 246, 198, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(31, 38, 135, 0.15),
        0 0 10px rgba(35, 246, 198, 0.1);
}

.team-symbol {
    font-size: 1.1rem;
    color: #201954;
    font-weight: 600;
    text-shadow: 
        0.1px 0.1px 0 #201954,
        -0.1px 0.1px 0 #201954,
        0.1px -0.1px 0 #201954,
        -0.1px -0.1px 0 #201954;
}

.team-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #222222;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.team-name:hover {
    color: #201954;
}

/* Responsive Design for Team Section */
@media (max-width: 992px) {
    .team-section {
        margin-top: 5rem;
    }
    
    .team-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .team-grid {
        gap: 3rem;
    }
    
    .team-card {
        max-width: 280px;
        min-width: 220px;
        padding: 1.8rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        margin-top: 4rem;
    }
    
    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        max-width: 400px;
    }
    
    .team-card {
        width: 100%;
        max-width: 350px;
        min-width: auto;
        padding: 2rem;
    }
    
    .team-avatar {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        margin-top: 3rem;
    }
    
    .team-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .team-role {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .team-name {
        font-size: 1rem;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-text h1, .hero-text p {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #201954, #fff 40%, #201954 60%, #fff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shine-text 5s linear infinite;
}
.hero-text h1 {
    margin-bottom: 1.2rem;
}
.hero-text p {
    margin-bottom: 2rem;
}
@keyframes shine-text {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.game-banner-marquee {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
}
.marquee-track {
    display: flex;
    align-items: center;
    width: auto;
    height: 100%;
    animation: marquee-scroll 18s linear infinite;
}
.marquee-track img {
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: contain;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
} 