/* Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00f3ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff00ff;
    --neon-blue: #0066ff;
    --dark-bg: #0a0e27;
    --dark-card: #151932;
    --dark-text: #e0e0e0;
    --dark-text-secondary: #a0a0a0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 38, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(21, 25, 50, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-text);
}

.nav {
    position: relative;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(176, 38, 255, 0.1) 0%, transparent 50%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.5);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    color: white;
    padding: 2rem 0;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    position: relative;
    text-align: left;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 0 20px var(--neon-cyan);
    animation: expand 1s ease-out 1s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.4s both;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--dark-bg);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5),
                inset 0 0 20px rgba(0, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8),
                0 10px 30px rgba(0, 243, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-purple);
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 38, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(176, 38, 255, 0.1);
    color: var(--neon-purple);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.6),
                0 10px 30px rgba(176, 38, 255, 0.3);
}

/* Mini Game Section */
.mini-game-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    position: relative;
}

.mini-game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 0 10px var(--neon-cyan);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.score-display {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.score-display strong {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(176, 38, 255, 0.6);
    font-size: 1.5rem;
}

.card-game-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    aspect-ratio: 1;
    perspective: 1000px;
    cursor: pointer;
}

.card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card.flipped {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-front {
    background: linear-gradient(135deg, var(--dark-card), rgba(0, 243, 255, 0.2));
    color: var(--neon-cyan);
    font-size: 3rem;
    border: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    transition: all 0.3s;
}

.card-front:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
    border-color: var(--neon-cyan);
    transform: scale(1.05);
}

.card-back {
    background: var(--dark-card);
    color: var(--dark-text);
    transform: rotateY(180deg);
    flex-direction: column;
    text-align: center;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

.card-content {
    font-size: 5rem;
    display: block;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
}

.card.matched {
    pointer-events: none;
}

.card.matched .card-back {
    border: 3px solid #4caf50;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.8), 0 0 50px rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.2);
    animation: greenGlow 1s ease-in-out infinite alternate;
}

.card.matched .card-content {
    color: #4caf50;
    text-shadow: 0 0 20px rgba(76, 175, 80, 1);
    animation: greenGlow 1s ease-in-out infinite alternate;
}

@keyframes greenGlow {
    from {
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.8), 0 0 50px rgba(76, 175, 80, 0.5);
    }
    to {
        box-shadow: 0 0 40px rgba(76, 175, 80, 1), 0 0 70px rgba(76, 175, 80, 0.7);
    }
}

.card-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-answer {
    font-size: 0.9rem;
    color: #666;
}

.card-correct {
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
    animation: correctPulse 0.5s ease-out;
}

/* Games Showcase */
.games-showcase {
    padding: 4rem 0;
    background: var(--dark-bg);
    position: relative;
}

.games-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    box-shadow: 0 0 10px var(--neon-purple);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 243, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }

.game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.4),
                0 0 60px rgba(176, 38, 255, 0.3);
    border-color: var(--neon-cyan);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(176, 38, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 10px;
}

.game-card h3 {
    padding: 1rem;
    color: var(--dark-text);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.game-card:hover h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Accordion Section */
.accordion-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    position: relative;
}

.accordion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--dark-card);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 243, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 25px rgba(0, 243, 255, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: var(--dark-card);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--dark-text);
    position: relative;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--neon-cyan);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.accordion-header:hover {
    background: rgba(0, 243, 255, 0.05);
    color: var(--neon-cyan);
    padding-left: 1.8rem;
}

.accordion-header:hover::before {
    transform: scaleY(1);
}

.accordion-item.active .accordion-header {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.accordion-item.active .accordion-header::before {
    transform: scaleY(1);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: all 0.3s;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--dark-text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-card);
    color: var(--dark-text);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 -5px 30px rgba(0, 243, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 20px var(--neon-purple);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    box-shadow: 0 0 5px var(--neon-cyan);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
    transition: width 0.3s;
}

.footer-section a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    transform: translateX(5px);
}

.footer-section a:hover::before {
    width: 100%;
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--dark-text-secondary);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes expand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes correctPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.content-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.content-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s;
    max-width: 1000px;
    margin: 0 auto;
}

.content-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}

.content-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.content-card p {
    color: var(--dark-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-section {
        padding: 2rem 0;
    }

    .content-card {
        padding: 1.5rem;
    }

    .content-card h2 {
        font-size: 1.5rem;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(21, 25, 50, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 2px 0 20px rgba(0, 243, 255, 0.2);
        border-right: 1px solid rgba(0, 243, 255, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        max-width: 100%;
    }

    .card-game-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .card-game-container {
        grid-template-columns: 1fr 1fr;
    }
}

