@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(15, 15, 20, 0.7);
    --neon-blue-start: #00F2FE;
    --neon-blue-end: #4FACFE;
    --neon-purple-start: #F093FB;
    --neon-purple-end: #F5576C;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-blue: 0 0 20px rgba(0, 242, 254, 0.5);
    --glow-purple: 0 0 20px rgba(240, 147, 251, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue-start), var(--neon-purple-start));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--neon-blue-start);
    text-shadow: var(--glow-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue-start), var(--neon-purple-start));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-blue-start);
    text-shadow: var(--glow-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue-start), var(--neon-purple-start));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(0.3);
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 50px;
}

.hero-game-card {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
}

.hero-image {
    width: 350px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.3);
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start)) border-box;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-info {
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-blue-end));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--neon-blue-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.6);
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue-start), var(--neon-purple-start));
    border-radius: 2px;
}

.games-section {
    padding: 60px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.game-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.game-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue-start);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(0, 242, 254, 0.2);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    }
    50% {
        background: linear-gradient(135deg, var(--neon-purple-start), var(--neon-blue-start));
    }
}

.game-thumb {
    position: relative;
    overflow: hidden;
}

.game-card.featured .game-thumb {
    height: 300px;
}

.game-card:not(.featured) .game-thumb {
    height: 180px;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-thumb img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
}

.game-card:hover .play-btn {
    transform: scale(1);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: #000;
    margin-left: 3px;
}

.game-info {
    padding: 20px;
}

.game-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--neon-blue-start);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
}

.game-card:hover .game-description {
    opacity: 1;
    max-height: 50px;
    margin-top: 10px;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.game-tag {
    padding: 3px 10px;
    background: var(--glass-bg);
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue-start);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.game-detail-page {
    padding-top: 70px;
}

.game-frame-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.game-frame-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.game-frame-title {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #fff, var(--neon-blue-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple-start), var(--neon-purple-end));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    box-shadow: var(--glow-purple);
}

.close-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.game-frame-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #000;
}

.game-frame-wrapper iframe {
    border: none;
    display: block;
}

.game-hero-banner {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
}

.game-hero-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start)) border-box;
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.2);
}

.game-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.game-hero-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--neon-blue-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-hero-info .detail-categories {
    margin-bottom: 20px;
}

.game-hero-info .detail-description {
    margin-bottom: 25px;
}

.game-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.game-tags-detail .game-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(240, 147, 251, 0.15));
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--neon-blue-start);
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.game-detail-info {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-left h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--neon-blue-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-category {
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--neon-blue-start);
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.detail-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.detail-right {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--glass-border);
}

.detail-right h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--neon-blue-start);
}

.instructions-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.play-now-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
    cursor: pointer;
    border: none;
}

.play-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.6);
}

.related-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.related-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue-start);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-thumb {
    height: 150px;
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-thumb img {
    transform: scale(1.1);
}

.related-info {
    padding: 15px;
}

.related-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.related-info span {
    font-size: 0.8rem;
    color: var(--neon-blue-start);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fff, var(--neon-blue-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--neon-blue-start);
}

.page-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.page-content ul li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    border-radius: 50%;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue-start);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start));
    border: none;
    border-radius: 10px;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
}

.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.game-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--neon-blue-start), var(--neon-purple-start)) border-box;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-blue-start);
}

.modal-close {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple-start), var(--neon-purple-end));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.fullscreen-btn {
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--neon-blue-start), var(--neon-blue-end));
    border: none;
    border-radius: 20px;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    box-shadow: var(--glow-blue);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 25px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-game-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: 280px;
        height: 200px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .game-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .game-hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-hero-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .game-hero-info h1 {
        font-size: 1.8rem;
    }

    .game-detail-info {
        grid-template-columns: 1fr;
    }

    .detail-left h1 {
        font-size: 1.8rem;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-blue-start), var(--neon-purple-start));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-purple-start), var(--neon-blue-start));
}
