@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #4f46e5;
    /* Indigo */
    --primary-glow: rgba(79, 70, 229, 0.15);
    --primary-hover: #4338ca;
    --secondary: #db2777;
    /* Pink accent */
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --bg-body: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.7);
    /* Glassy white */
    --border-color: rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    background-image:
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(219, 39, 119, 0.05) 0px, transparent 50%);
    color: var(--text-medium);
    line-height: 1.6;
}

* {
    cursor: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 96, 255, 0.2);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(74, 96, 255, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: white;
    transform: translateY(-1px);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    background-color: #f97316;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

/* Header */
header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
    animation: move-blob 20s infinite alternate;
}

@keyframes move-blob {
    0% {
        transform: translate(-20%, -20%) scale(1);
    }

    100% {
        transform: translate(20%, 20%) scale(1.2);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-size: clamp(40px, 8vw, 84px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-buttons .btn {
    min-width: 180px;
}

/* About Us */
.about-card {
    border-radius: var(--radius-md);
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.about-card h3:not(:first-of-type) {
    margin-top: 48px;
}

/* Stats */
.stats {
    background-color: var(--bg-card);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--border-color);
}

.stat-number {
    font-size: 56px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: #ef4444;
    /* red plus sign */
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    color: var(--text-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 0 10px var(--primary-glow);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

#games {
    background-color: var(--bg-body);
}

#hybrid {
    background-color: var(--bg-card);
}

#puzzle {
    background-color: var(--bg-body);
}

#about {
    background-color: var(--bg-body);
}

/* Games General */
.store-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.store-badge-link {
    display: inline-block;
    transition: transform 0.2s;
}

.store-badge-link:hover {
    transform: translateY(-2px);
}

.store-badge {
    height: 48px;
    display: block;
}

.store-btn {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    border: 1px solid #1a1a1a;
}

.store-btn:hover {
    opacity: 0.85;
}

.store-btn-icon {
    font-size: 28px;
    color: var(--primary);
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.store-btn-text .small {
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 2px;
    opacity: 0.9;
}

.store-btn-text .large {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

/* Our Games (Featured) */
.featured-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.featured-game-card {
    background: transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: none;
    transition: all 0.4s ease;
}

.featured-game-card:hover {
    transform: translateY(-5px);
}

.featured-banner {
    aspect-ratio: 16 / 9;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
    overflow: hidden;
    background-color: #000;
    border-radius: var(--radius-md);
    /* Added rounding to all corners */
}

.video-banner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.featured-content {
    padding: 20px 0;
    display: flex;
    gap: 20px;
}

.game-icon {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.game-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.game-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Hybrid & Puzzle Games */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.game-card-small {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.game-card-small:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.game-card-small .game-icon {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.game-card-small .game-info h3 {
    font-size: 22px;
    font-weight: 600;
}

.game-card-small .game-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 4px;
}

.game-card-small .store-buttons {
    margin-top: 12px;
}

.game-card-small .store-badge {
    height: 40px;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 56px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-header a {
    color: var(--primary);
    font-weight: 700;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-label span {
    color: #ef4444;
}

.form-control {
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: #22c55e;
    color: white;
    margin-top: 16px;
}

.btn-submit:hover {
    background-color: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Form status messages */
.form-status {
    display: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.form-status--success {
    display: block;
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-status--error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
footer {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920') center/cover;
    border-top: 1px solid #334155;
    padding: 40px 0 20px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-light);
    font-size: 14px;
    max-width: 300px;
    margin-top: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.partner-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

/* =============================================
   HAMBURGER MENU BUTTON
   ============================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* =============================================
   RESPONSIVE — max-width: 992px (Small laptops / tablets landscape)
   ============================================= */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 36px;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero h2 {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-number {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-games {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-icon {
        width: 110px;
        height: 110px;
    }

    .game-card-small .game-icon {
        width: 120px;
        height: 120px;
    }

    .contact-card {
        padding: 40px 32px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =============================================
   RESPONSIVE — max-width: 768px (Tablets & large phones)
   ============================================= */
@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav */
    .menu-toggle {
        display: flex;
    }

    .header-content {
        height: 64px;
    }

    .header-content nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--glass-bg);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--glass-border);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .header-content nav.nav-open {
        max-height: 400px;
        padding: 16px 0;
    }

    .header-content nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
    }

    .header-content nav ul li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }

    .header-content nav ul li:last-child a {
        border-bottom: none;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .hero h2 {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-blob {
        width: 300px;
        height: 300px;
    }

    /* Section */
    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    /* Stats */
    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 38px;
    }

    .stat-label {
        font-size: 16px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 32px 24px;
    }

    /* Games */
    .featured-content {
        gap: 16px;
    }

    .game-icon {
        width: 90px;
        height: 90px;
        border-radius: 12px;
    }

    .game-info h3 {
        font-size: 18px;
    }

    .game-info p {
        font-size: 14px;
    }

    .game-card-small {
        padding: 16px;
        gap: 16px;
    }

    .game-card-small .game-icon {
        width: 100px;
        height: 100px;
    }

    .game-card-small .game-info h3 {
        font-size: 18px;
    }

    .store-badge {
        height: 40px;
    }

    .game-card-small .store-badge {
        height: 36px;
    }

    /* About */
    .about-card {
        padding: 32px 24px;
    }

    .about-card h3 {
        font-size: 20px;
    }

    /* Contact */
    .contact-card {
        padding: 32px 20px;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    footer {
        padding: 48px 0 32px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* =============================================
   RESPONSIVE — max-width: 480px (Small phones)
   ============================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 20px;
        gap: 8px;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 70px 0 40px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }

    .hero h2 {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-blob {
        width: 200px;
        height: 200px;
    }

    /* Section */
    .section {
        padding: 36px 0;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    /* Stats */
    .stats {
        padding: 32px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Services */
    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-desc {
        font-size: 14px;
    }

    /* Games - stack icon above text on very small screens */
    .featured-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .featured-content .store-buttons {
        justify-content: center;
    }

    .game-icon {
        width: 80px;
        height: 80px;
    }

    .game-info h3 {
        font-size: 16px;
    }

    .game-info p {
        font-size: 13px;
    }

    .game-card-small {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }

    .game-card-small .store-buttons {
        justify-content: center;
    }

    .game-card-small .game-icon {
        width: 80px;
        height: 80px;
    }

    .game-card-small .game-info h3 {
        font-size: 16px;
    }

    .game-card-small .game-info p {
        font-size: 13px;
    }

    .store-badge {
        height: 36px;
    }

    .game-card-small .store-badge {
        height: 34px;
    }

    .badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* About */
    .about-card {
        padding: 24px 16px;
    }

    .about-card h3 {
        font-size: 18px;
    }

    .about-card p {
        font-size: 14px;
    }

    /* Contact */
    .contact-card {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }

    .form-control {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 36px 0 24px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE — min-width: 1600px (Large desktops / QHD)
   ============================================= */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 38px;
        margin-bottom: 56px;
    }

    .hero h1 {
        font-size: 90px;
    }

    .hero h2 {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .stat-number {
        font-size: 64px;
    }

    .stat-label {
        font-size: 22px;
    }

    .service-card {
        padding: 48px 40px;
    }

    .service-title {
        font-size: 24px;
    }

    .game-icon {
        width: 160px;
        height: 160px;
    }

    .game-card-small .game-icon {
        width: 180px;
        height: 180px;
    }

    .game-info h3 {
        font-size: 26px;
    }

    .game-info p {
        font-size: 17px;
    }

    .about-card {
        padding: 56px;
    }

    .contact-card {
        padding: 64px;
    }

    .footer-grid {
        gap: 64px;
    }
}

/* =============================================
   RESPONSIVE — min-width: 2560px (4K / Ultrawide 21:9)
   ============================================= */
@media (min-width: 2560px) {
    .container {
        max-width: 1800px;
    }

    .section {
        padding: 120px 0;
    }

    .section-title {
        font-size: 44px;
        margin-bottom: 64px;
    }

    .header-content {
        height: 100px;
    }

    .logo {
        font-size: 32px;
    }

    nav ul {
        gap: 48px;
        font-size: 18px;
    }

    .hero h1 {
        font-size: 110px;
    }

    .hero h2 {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .btn {
        padding: 18px 40px;
        font-size: 18px;
    }

    .stats {
        padding: 80px 0;
    }

    .stat-number {
        font-size: 76px;
    }

    .stat-label {
        font-size: 26px;
    }

    .services-grid {
        gap: 32px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-desc {
        font-size: 18px;
    }

    .featured-games {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .game-icon {
        width: 180px;
        height: 180px;
    }

    .game-card-small .game-icon {
        width: 200px;
        height: 200px;
    }

    .game-info h3 {
        font-size: 30px;
    }

    .game-info p {
        font-size: 19px;
    }

    .store-badge {
        height: 56px;
    }

    .about-card {
        padding: 64px;
        max-width: 1200px;
    }

    .about-card h3 {
        font-size: 28px;
    }

    .about-card p {
        font-size: 19px;
    }

    .contact-card {
        padding: 72px;
        max-width: 1100px;
    }

    .form-control {
        padding: 20px 24px;
        font-size: 17px;
    }

    footer {
        padding: 100px 0 48px;
    }

    .footer-col h4 {
        font-size: 22px;
    }

    .footer-desc {
        font-size: 16px;
        max-width: 400px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .social-link {
        font-size: 26px;
    }
}

/* Custom Cursor */
.cursor-minimal {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    z-index: 99999;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border: none;
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s, transform 0.3s, border-color 0.3s;
}


body:hover .cursor-minimal {
    opacity: 1;
}

.cursor-minimal.hover {
    width: 20px;
    height: 20px;
    background-color: var(--primary-glow);
    border: 1px solid var(--primary);
}

@media (max-width: 1024px) {
    * {
        cursor: auto !important;
    }

    .cursor-minimal {
        display: none;
    }

    body {
        cursor: auto;
    }
}