/* ==================== CSS Variables & Theming ==================== */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #f7b801;
    --bg-light: #ffffff;
    --bg-dark: #0f0f0f;
    --text-light: #333333;
    --text-dark: #f0f0f0;
    --card-light: #f8f9fa;
    --card-dark: #1a1a1a;
    --border-light: #e0e0e0;
    --border-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #ff6b35, #f7b801);
    --gradient-secondary: linear-gradient(135deg, #004e89, #0099ff);
    --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark-theme {
    --bg-light: #0f0f0f;
    --text-light: #f0f0f0;
    --card-light: #1a1a1a;
    --border-light: #333333;
    --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-light);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
}

/* ==================== Theme Toggle ==================== */
.theme-toggle-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Slightly raise the toggle when footer is visible to avoid overlap on very small viewports */
@media (max-height: 520px) {
    .theme-toggle-container {
        bottom: 78px; /* make room for small footer bars */
    }
}

.theme-toggle {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(20deg);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.5s ease;
}

.dark-theme .toggle-icon {
    transform: rotate(180deg);
}

/* ==================== Navigation ==================== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 100;
    transition: background 0.3s ease;
}

.dark-theme .navbar {
    background: rgba(15, 15, 15, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: background 0.18s ease, transform 0.14s ease, color 0.18s ease;
    position: relative;
    padding: 6px 10px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,107,53,0.16);
    border-color: transparent;
}

/* remove underline effect now that links look like buttons */
.nav-link::after {
    display: none;
}

/* dark theme variants - keep transparent default, change active colors */
.dark-theme .nav-link {
    background: transparent;
    border-color: rgba(255,255,255,0.1);
    color: var(--text-dark);
}

.dark-theme .nav-link:hover {
    transform: translateY(-2px);
}

.dark-theme .nav-link.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,107,53,0.16);
    border-color: transparent;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-50px) translateX(50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    animation: scaleUp 0.6s ease-out forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.title-word:nth-child(1) {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-word:nth-child(3) {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Buttons ==================== */
.btn {
    padding: 12px 28px;
    border: 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.22s cubic-bezier(.2,.9,.2,1), box-shadow 0.22s ease, opacity 0.18s ease;
    text-transform: none;
    letter-spacing: 0.6px;
    padding-inline: 18px;
    backdrop-filter: blur(6px) saturate(120%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255,107,53,0.18), inset 0 -6px 20px rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 12px 24px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 18px 50px rgba(255,107,53,0.22), inset 0 -8px 28px rgba(0,0,0,0.06);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,107,53,0.14);
    color: var(--primary-color);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255,107,53,0.95);
    color: white;
    transform: translateY(-3px);
}

.btn-order {
    background: linear-gradient(90deg, var(--secondary-color), #006fb3);
    color: white;
    width: 100%;
    justify-content: center;
    margin-top: 18px;
    border-radius: 10px;
    padding: 14px 18px;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,100,150,0.12);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-icon {
    font-size: 20px;
}

/* ==================== Language Switcher ==================== */
.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--text-light);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.14s ease, color 0.18s ease;
}

.lang-btn:hover {
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,107,53,0.16);
    border-color: transparent;
}

/* Focus states for accessibility */
.btn:focus, .lang-btn:focus {
    outline: 3px solid rgba(0,150,200,0.12);
    outline-offset: 3px;
}

/* ==================== Sections ==================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    opacity: 0.7;
    margin-bottom: 60px;
}

.features-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    margin-top: 40px;
}

section {
    padding: 80px 20px;
    position: relative;
}

/* ==================== Games Section ==================== */
.games-section {
    background: var(--card-light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.dark-theme .game-card {
    background: var(--card-dark);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.game-icon {
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.game-card p {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 14px;
}

/* ==================== Features Section ==================== */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: var(--card-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.dark-theme .feature-card {
    background: var(--card-dark);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    opacity: 0.7;
}

/* ==================== Hardware Showcase ==================== */
.hardware-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hardware-item {
    background: var(--card-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dark-theme .hardware-item {
    background: var(--card-dark);
    border-color: var(--border-light);
}

.hardware-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
}

.hardware-item:hover::before {
    left: 0;
}

.hardware-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.hardware-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
}

.hardware-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.hardware-item p {
    color: var(--text-light);
    opacity: 0.75;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== Specs Section ==================== */
.specs-section {
    background: var(--card-light);
}

.dark-theme .specs-section {
    background: var(--bg-light);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.spec-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.dark-theme .spec-card {
    background: var(--card-dark);
}

.spec-card.highlight {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.spec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.spec-header h3 {
    font-size: 24px;
}

.spec-badge {
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.spec-badge.premium {
    background: var(--gradient-primary);
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 10px 0;
    color: var(--text-light);
    opacity: 0.85;
    border-bottom: 1px solid var(--border-light);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list strong {
    color: var(--primary-color);
}

/* ==================== Pricing Section ==================== */
.pricing-section {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--card-light);
    border: 2px solid var(--border-light);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dark-theme .pricing-card {
    background: var(--card-dark);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.game-type {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 30px;
    font-size: 18px;
}

.currency {
    font-size: 24px;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 14px;
}

.pricing-features {
    flex-grow: 1;
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    opacity: 0.85;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ==================== Side Services Section ==================== */
.side-services {
    background: var(--bg-light);
    padding: 80px 20px;
}

.side-services .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.side-services h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.side-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.side-service-card {
    background: var(--card-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.dark-theme .side-service-card {
    background: var(--card-dark);
    border-color: var(--border-light);
}

.side-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.15);
    border-color: var(--primary-color);
}

.side-service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.side-service-card p {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.75;
    line-height: 1.6;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--card-light);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.dark-theme .footer {
    background: var(--bg-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    opacity: 0.6;
    font-size: 14px;
}

.disclaimer {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    font-size: 13px;
    opacity: 0.85;
    font-style: italic;
}

.dark-theme .disclaimer {
    background: rgba(255, 107, 53, 0.08);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .title-word {
        display: block;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .spec-card.highlight {
        transform: scale(1);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section .btn {
        width: 100%;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    section {
        padding: 40px 20px;
    }

    .nav-links {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==================== Games List Page ==================== */
.games-header {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.games-header .back-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    opacity: 0.9;
    margin-right: 12px;
}

.games-title {
    font-size: 28px;
    margin: 6px 0 0 0;
}

.games-subtitle {
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 6px;
}

.games-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.game-search {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    color: var(--text-light);
    min-width: 260px;
    box-shadow: var(--shadow-light);
}

.dark-theme .game-search {
    background: var(--card-dark);
    border-color: var(--border-light);
}

.game-count {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: rgba(255,255,255,0.02);
}

.games-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
}

.games-list li {
    background: var(--card-light);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    gap: 12px;
    align-items: center;
}

.dark-theme .games-list li {
    background: var(--card-dark);
    border-color: var(--border-light);
}

.games-list li:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.games-list li::before {
    content: '🎮';
    font-size: 26px;
    margin-right: 8px;
    display: inline-block;
}

@media (max-width: 768px) {
    .game-search {
        min-width: 180px;
    }
}

/* ==================== Animations & Transitions ==================== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
} 

.game-card:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Smooth transitions for theme */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button, a {
    transition: all 0.3s ease;
}
