   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    :root {
            --primary-dark: #12343b;
            --primary-light: #254d56;
            --accent-teal: #32b8c6;
            --text-light: #FFFFFF;
            --text-light-gray: #E8E8E8;
            --text-gray: #D0D0D0;
            --shadow: rgba(0, 0, 0, 0.3);
        }
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-light);
        background-color: var(--primary-dark);
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(18, 52, 59, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem;
        z-index: 1000;
        box-shadow: 0 2px 10px var(--shadow);
        border-radius: 0px 0px 20px 20px;
    }

    nav ul {
        list-style: none;
        align-items: center;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    nav a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 0.5rem 1rem;
    } 

    nav a:hover {
        color: var(--accent-teal);
    }
    .top-logo{ 
        width: 40px;
    }  
    /* Hero Section */ 
    #hero {
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center; 
        text-align: center;
        height: 700px;
        /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%); */
        position: relative;
        overflow: hidden;
        margin: 50px auto auto auto;
    }
    .blurred-background {
        position: absolute; 
        width: 100%;
        height: 100%;
        background: linear-gradient( #0b2125d2, #13292eb7), url('TopBackground.png');
        background-size: cover;
        background-position: center;
        background-repeat: repeat;
        filter: blur(0px); 
        z-index: -1; 
    }
    #hero::before {
        content: '';
        position: absolute;
        animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }

    .logo-container {
        position: relative;
        z-index: 1;
    }

    .logo {
        font-size: 4rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-teal) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .logo-subtitle {
        font-size: 1.2rem;
        color: var(--text-light-gray);
        letter-spacing: 1px;
    }

    .hero-mascot {
        max-width: 1000px;
        width: 100%;
        height: auto;
        position: relative;
        /*z-index: 1;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
         margin: 50px 50px 20px 50px;
    }

    #hero h2 {
        font-size: 2rem;
        position: relative;
        z-index: 1;
    }

    #hero p {
        font-size: 1.2rem;
        max-width: 1000px;
        position: relative;
        margin-bottom: 1rem;
        z-index: 1;
        color: rgba(255, 255, 255, 0.9);
    }

    .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background-color: var(--accent-teal);
        color: var(--primary-dark);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(50, 184, 198, 0.3);
        position: relative;
        z-index: 1;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(50, 184, 198, 0.5);
        background-color: #50c4d2;
    }

    /* Section Styles */
    section {
        padding: 5rem 5rem;
        max-width: auto;
        margin: 0 auto;
    }

    section h2 {
        font-size: 2.5rem;
        text-align: center;
        color: var(--text-light);
    }

    /* About Section */
    #about {
        position: relative;
    }

    .about-content {
        max-width: 1000px;
        margin: 0 auto;
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.8;
        color: var(--text-light-gray);
    }

    /* Games Section */
    #games {
        background-color: var(--primary-dark);
    }

    .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 450px));
        gap: 2rem;
        justify-content: center; 
    }

    .game-card {
        background: linear-gradient(135deg, rgba(37, 77, 86, 0.4) 0%, rgba(18, 52, 59, 0.6) 100%);
        border: 2px solid var(--primary-light);
        border-radius: 15px;
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .game-image {
        width: 100%;
        height: 35%;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .game-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(50, 184, 198, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .game-card:hover::before {
        left: 100%;
    }

    .game-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-teal);
        box-shadow: 0 8px 25px var(--shadow);
    }

    .game-status {
        display: inline-block;
        padding: 0.3rem 1rem;
        background-color: var(--accent-teal);
        color: var(--primary-dark);
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .game-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    .game-card p {
        margin-bottom: 1rem;
        color: var(--text-light-gray);
    }

    .game-platform {
        color: var(--accent-teal);
        font-weight: 600;
        font-size: 0.95rem;
    }

    /* Contact Section */
    #contact {
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    }

    .contact-intro {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-mascot {
        max-width: 250px;
        width: 100%;
        height: auto;
        margin: 0 auto 1.5rem;
        display: block;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(18, 52, 59, 0.8) 0%, rgba(37, 77, 86, 0.8) 100%);
        padding: 2.5rem;
        border-radius: 15px;
        border: 2px solid var(--primary-light);
        box-shadow: 0 4px 20px var(--shadow);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-light);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        background-color: rgba(18, 52, 59, 0.6);
        border: 1px solid var(--primary-light);
        border-radius: 8px;
        color: var(--text-light);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-teal);
        background-color: rgba(18, 52, 59, 0.9);
        box-shadow: 0 0 0 3px rgba(50, 184, 198, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
        font-family: inherit;
    }

    .form-group select {
        cursor: pointer;
    }

    .submit-button {
        width: 100%;
        padding: 1rem;
        background-color: var(--accent-teal);
        color: var(--primary-dark);
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(50, 184, 198, 0.5);
        background-color: #50c4d2;
    }

    .error-message {
        color: #ff6b6b;
        font-size: 0.9rem;
        margin-top: 0.3rem;
        display: none;
    }

    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #ff6b6b;
    }

    .form-group.error .error-message {
        display: block;
    }

    /* Footer */
    footer {
        background-color: var(--primary-dark);
        padding: auto 2rem 2rem;
        text-align: center;
        border-top: 2px solid var(--primary-light);
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 8px;
    }

    .social-links a:hover {
        color: var(--accent-teal);
        background-color: rgba(37, 77, 86, 0.3);
    }

    .copyright {
        color: var(--text-gray);
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        nav ul {
            gap: 1rem;
        }

        nav a {
            padding: 0.3rem 0.5rem;
            font-size: 0.9rem;
        }

        .logo {
            font-size: 2.5rem;
        }

        .logo-subtitle {
            font-size: 1rem;
        }

        #hero h2 {
            font-size: 1.5rem;
        }

        #hero p {
            font-size: 1rem;
        }

        section {
            padding: 3rem 1rem;
        }

        section h2 {
            font-size: 2rem;
        }

        .games-grid {
            grid-template-columns: 1fr;
        }

        .contact-form {
            padding: 1.5rem;
        }
    }

    /* Decorative elements */
    .pattern-decoration {
        position: absolute;
        opacity: 0.05;
        font-size: 7rem;
        animation: float 5s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-50px); }
    }

    .pattern-1 { top: 100%; left: 15%; animation-delay: 0s; }
    .pattern-2 { top: 120%; right: 10%; animation-delay: 2s; }
    .pattern-3 { bottom: -100%; left: 20%; animation-delay: 4s; }