/* Custom premium stylesheet for 9Vinz bridge page */

:root {
    --bg-dark-primary: #050308;
    --bg-dark-secondary: #0f0a1d;
    --bg-glass-card: rgba(15, 10, 29, 0.65);
    --border-glass: rgba(255, 255, 255, 0.06);
    
    /* Premium Gold Palette */
    --gold-light: #FFE082;
    --gold-main: #FFC107;
    --gold-dark: #FF8F00;
    --gold-glow: rgba(255, 193, 7, 0.45);
    --gold-gradient: linear-gradient(135deg, #FFE082 0%, #FFB300 50%, #FF8F00 100%);
    
    /* Neon Accents */
    --neon-green: #00E676;
    --neon-green-glow: rgba(0, 230, 118, 0.35);
    --neon-pink: #FF007F;
    --neon-pink-glow: rgba(255, 0, 127, 0.35);
    --neon-cyan: #00E5FF;
    --neon-cyan-glow: rgba(0, 229, 255, 0.3);
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #ECEFF1;
    --text-muted: #90A4AE;
    --text-gold: #FFD54F;
    
    /* Spacing & Borders */
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Interactive Spotlight Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(
        500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 193, 7, 0.05) 0%, 
        rgba(255, 0, 127, 0.02) 50%, 
        transparent 80%
    );
    pointer-events: none;
    transition: background 0.1s ease;
}

/* Premium Background Glowing Orbs */
.bg-glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.14;
    mix-blend-mode: screen;
    animation: float-orbs 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 550px;
    height: 550px;
    background: var(--neon-pink);
    top: -10%;
    left: -5%;
    animation-duration: 22s;
}

.orb-2 {
    width: 650px;
    height: 650px;
    background: #4a148c; /* Deep violet */
    bottom: -15%;
    right: -5%;
    animation-duration: 28s;
    animation-delay: -7s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: var(--gold-dark);
    top: 30%;
    left: 55%;
    animation-duration: 18s;
    animation-delay: -12s;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: #006064; /* Cyan/Teal */
    bottom: 40%;
    left: -10%;
    animation-duration: 32s;
    animation-delay: -4s;
}

/* Technical Tech Grid Overlay */
.bg-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    pointer-events: none;
    opacity: 0.8;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Extensions */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.highlight-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-gold {
    color: var(--text-gold);
}

.text-green {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green-glow);
}

.text-white {
    color: var(--text-white);
}

.font-weight-bold {
    font-weight: 700;
}

/* Highly Attractive Header */
.header {
    background-color: rgba(5, 3, 8, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-main), var(--neon-pink), transparent);
    opacity: 0.8;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.2);
}

.logo-accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-crown {
    display: inline-flex;
    margin-left: 2px;
    animation: float 3s ease-in-out infinite;
}

/* Header Navigation Links */
.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid var(--gold-main);
    color: var(--text-gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.2);
}

.nav-btn:hover {
    background: var(--gold-gradient);
    color: #2D1A00;
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(1.05);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 230, 118, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 1.5s infinite;
}

/* Condensed Hero Section Grid */
.hero-section {
    padding: 50px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Urgency Timer */
.urgency-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.1);
}

.timer-icon {
    animation: spin-slow 8s linear infinite;
}

.hero-title {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 580px;
}

/* Bullet Items */
.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.bullet-check {
    color: var(--neon-green);
    flex-shrink: 0;
}

/* --- ROTATING GRADIENT GLOW CARD --- */
.glow-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding: 3px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    /* 3D Tilt Setup */
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
    transition: transform 0.1s ease;
}

.glow-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg, 
        transparent 20%, 
        var(--gold-main) 35%, 
        var(--neon-pink) 50%,
        var(--neon-cyan) 65%,
        transparent 80%, 
        var(--gold-main) 100%
    );
    animation: rotate-glow 5s linear infinite;
    z-index: 0;
    filter: blur(2px);
}

.glow-card-content {
    background: var(--bg-dark-secondary);
    border-radius: calc(var(--radius-lg) - 3px);
    width: 100%;
    z-index: 1;
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-quick-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.badge-gold {
    background: var(--gold-gradient);
    color: #2D1A00;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-details {
    color: var(--text-light);
}

.bonus-details strong {
    color: var(--text-gold);
}

/* Button & Action styling - Intense Premium Glow & Sliding Gradient */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.02em;
}

.btn-cta {
    background: linear-gradient(90deg, #FFE082, #FFB300, #FF8F00, #FFE082, #FFB300);
    background-size: 200% auto;
    color: #2D1A00;
    box-shadow: 
        0 0 15px rgba(255, 193, 7, 0.4), 
        0 0 30px rgba(255, 193, 7, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: pulse-glow 2s infinite, animate-gradient 3s infinite linear;
    position: relative;
    overflow: hidden;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
    pointer-events: none;
}

.btn-cta:hover::after {
    left: 100%;
    transition: 0.7s ease-in-out;
}

.btn-cta:hover {
    transform: scale(1.03);
    box-shadow: 
        0 0 25px rgba(255, 193, 7, 0.8), 
        0 0 50px rgba(255, 193, 7, 0.4),
        0 8px 25px rgba(255, 193, 7, 0.5);
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
    transform: translateX(4px);
}

.cta-trust-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

.cta-trust-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Right side Hero Image styling with glowing overlay and floats */
.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Tilt and Glow effect on Hover for Hero Image */
.hero-image-wrapper {
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: var(--transition-smooth);
    perspective: 1000px;
    cursor: pointer;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, rgba(255, 0, 127, 0.18) 50%, transparent 70%);
    z-index: -1;
    filter: blur(30px);
    animation: pulse 4s infinite alternate;
    transition: var(--transition-smooth);
}

.hero-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
    animation: float 5s ease-in-out infinite;
    transition: var(--transition-smooth);
}

/* Hero Image Hover: Tilt & Intense Glow */
.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-8deg) scale(1.04);
}

.hero-image-wrapper:hover::before {
    background: radial-gradient(circle, rgba(255, 193, 7, 0.45) 0%, rgba(255, 0, 127, 0.25) 50%, transparent 70%);
    filter: blur(20px);
}

.hero-image-wrapper:hover .hero-image {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.85)) drop-shadow(0 0 25px rgba(255, 193, 7, 0.45));
}

/* Popular Games Previews (Added Images, Border Glow, Tilt) */
.games-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 10px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.game-card {
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    perspective: 1000px;
    cursor: pointer;
}

.game-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Border Glow & 3D Tilt for Game Cards on Hover */
.game-card:hover {
    transform: perspective(1000px) rotateX(6deg) rotateY(-6deg) translateY(-8px);
    border-color: var(--gold-main);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5), 
        0 0 25px rgba(255, 193, 7, 0.35),
        0 0 10px rgba(255, 0, 127, 0.15);
}

.game-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.game-card:hover .game-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.game-info {
    padding: 20px;
    text-align: left;
}

.game-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    color: var(--text-gold);
    transition: var(--transition-smooth);
}

.game-card:hover .game-info h3 {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.game-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Calculator Section */
.calculator-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
}

.calculator-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 10, 29, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.calculator-title {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
}

.calculator-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.calc-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.input-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

.currency-input {
    position: relative;
    width: 100%;
}

.currency-symbol {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gold);
}

.currency-input input {
    width: 100%;
    background: rgba(5, 3, 8, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 14px 14px 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.currency-input input:focus {
    outline: none;
    border-color: var(--gold-main);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

/* Custom Slider Styling */
.slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-group input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-gradient);
    cursor: pointer;
    box-shadow: 0 0 8px var(--gold-glow);
    transition: transform 0.1s;
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}

.calc-results {
    background: rgba(5, 3, 8, 0.4);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-item.divider {
    border-top: 1px solid var(--border-glass);
    padding-top: 12px;
}

.result-label {
    font-size: 14px;
    color: var(--text-light);
}

.result-value {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

/* Legal overlay modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 3, 8, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-wrapper {
    background: #0f0a1d;
    border: 1px solid var(--border-glass);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 193, 7, 0.15);
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    position: relative;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content-wrapper {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--neon-pink);
}

.modal-body {
    padding: 35px;
    overflow-y: auto;
}

.modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-text {
    font-size: 14px;
    color: var(--text-light);
    text-align: left;
}

.modal-text p {
    margin-bottom: 15px;
}

.modal-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-text li strong {
    color: var(--text-gold);
}

/* Footer Section */
.footer {
    background-color: #030205;
    border-top: 1px solid var(--border-glass);
    padding: 40px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 5px;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.legal-link:hover {
    color: var(--text-gold);
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-badge-item {
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
}

.age-restriction {
    border-color: #FF5252;
    color: #FF5252;
}

.footer-warning {
    max-width: 700px;
    line-height: 1.5;
}

.footer-copyright {
    font-size: 11px;
    color: #333333;
}

/* Keyframes */
@keyframes pulse {
    0% { transform: scale(0.96); opacity: 0.85; }
    100% { transform: scale(1.04); opacity: 1; }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(255, 193, 7, 0.4), 0 0 30px rgba(255, 193, 7, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 193, 7, 0.7), 0 0 50px rgba(255, 193, 7, 0.35); }
    100% { box-shadow: 0 0 15px rgba(255, 193, 7, 0.4), 0 0 30px rgba(255, 193, 7, 0.2); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes animate-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes float-orbs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 80px) scale(1.15); }
    100% { transform: translate(-30px, 120px) scale(0.9); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-left {
        align-items: center;
        text-align: center;
    }
    .hero-bullets {
        align-items: center;
    }
    .hero-bullets li {
        text-align: left;
    }
    .hero-right {
        order: -1; /* Place image on top in mobile */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .game-img {
        height: 200px;
    }
    .header-nav {
        display: none; /* Hide header menu links on small mobile screens */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    .glow-card-content {
        padding: 16px;
    }
    .btn {
        padding: 15px 20px;
        font-size: 16px;
    }
}
