/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff006e;
    --secondary-color: #8338ec;
    --tertiary-color: #3a86ff;
    --accent-1: #fb5607;
    --accent-2: #ffbe0b;
    --dark-color: #0a0a0a;
    --light-color: #f8f9ff;
    --border-color: #e0e0e0;
    --text-color: #1a1a1a;
    --gradient-1: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    --gradient-2: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
    --gradient-3: linear-gradient(135deg, #3a86ff 0%, #00f5ff 100%);
    --gradient-4: linear-gradient(135deg, #fb5607 0%, #ffbe0b 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --glow-1: 0 0 20px rgba(255, 0, 110, 0.3);
    --glow-2: 0 0 30px rgba(131, 56, 236, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, #f8f9ff 0%, #f0f2ff 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Header */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 255, 0.98) 100%);
    box-shadow: 0 8px 32px rgba(131, 56, 236, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(131, 56, 236, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo Icon with C and Black Outline with Red Color */
.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 12px;
    background: var(--gradient-1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.logo-icon:hover::before {
    left: 100%;
}

.logo-icon:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(255, 0, 110, 0.5), var(--glow-1);
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.1);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar-small {
    position: relative;
}

.search-bar-small input {
    padding: 10px 18px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    width: 220px;
    transition: all 0.3s ease;
    background: white;
    font-size: 14px;
}

.search-bar-small input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.2);
    background: white;
}

.btn-signin {
    padding: 11px 28px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.3);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-signin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-signin:hover::before {
    left: 100%;
}

.btn-signin:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 0, 110, 0.4), var(--glow-1);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    border-radius: 50%;
    top: -200px;
    left: -100px;
    opacity: 0.15;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    opacity: 0.15;
    animation: pulse 5s ease-in-out infinite 0.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-game {
    position: absolute;
    font-size: 48px;
    opacity: 0.25;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.2));
}

.floating-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.floating-4 {
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.floating-5 {
    bottom: 10%;
    right: 20%;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(15deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #f0e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 32px;
    margin-bottom: 12px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 500;
}

.btn-hero {
    padding: 18px 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 35px rgba(255, 0, 110, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 0, 110, 0.5), var(--glow-1);
}


.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Section */
.search-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.search-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.08;
}

.search-box-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.search-box-wrapper h2 {
    font-size: 42px;
    margin-bottom: 35px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.search-box {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 35px;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(255, 0, 110, 0.2);
    transform: translateY(-2px);
}

.search-btn {
    padding: 16px 35px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 0, 110, 0.4), var(--glow-1);
}

/* Filter Tags */
.filter-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3), var(--glow-1);
}

/* Games Section */
.games-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    opacity: 0.08;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.game-card {
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 10;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.2), 0 0 30px rgba(131, 56, 236, 0.1);
}

.game-image {
    width: 100%;
    height: 220px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: white;
    position: relative;
    overflow: hidden;
}

.game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.game-card:hover .game-image::after {
    background: rgba(0, 0, 0, 0.15);
}

.game-info {
    padding: 25px;
}

.game-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    letter-spacing: -0.3px;
}

.game-genre {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
}

.game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-price {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-buy {
    padding: 10px 20px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.3);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 20px;
}

/* Features Section */
.trending-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    position: relative;
}

.trending-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.trending-games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.trending-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.trending-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-4);
    z-index: 10;
}

.trending-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.2);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 80px 20px;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gradient-3);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
    opacity: 0.08;
}

.features h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(131, 56, 236, 0.15);
    border-color: rgba(131, 56, 236, 0.2);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(131, 56, 236, 0.15));
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    opacity: 0.08;
}

.about h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.about p {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 80px 20px;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-4);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    opacity: 0.08;
}

.contact h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3), var(--glow-1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 70px 20px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .search-box {
        flex-direction: column;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 10px;
    }

    .logo {
        gap: 8px;
    }

    .brand-name {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
