/* ================= GLOBAL VARIABLES ================= */
:root {
    --bg-main: #06070a;
    --bg-secondary: #0d1017;
    --bg-glass: rgba(20, 24, 34, 0.6);
    --neon-primary: #ff0055; /* Neon Pink/Red vibe for OTTMAXX */
    --neon-secondary: #00f0ff;
    --text-main: #ffffff;
    --text-muted: #8b92a5;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(6, 7, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--neon-primary);
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--neon-primary);
    color: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.3);
}

.btn-primary:hover {
    background: #ff1a66;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--text-main);
}

/* ================= HERO SECTION ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    background: radial-gradient(circle at center, rgba(255,0,85,0.08) 0%, transparent 60%);
}

.badge {
    display: inline-block;
    background: rgba(255,0,85,0.1);
    color: var(--neon-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,0,85,0.3);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--neon-primary);
    text-shadow: 0 0 20px rgba(255,0,85,0.4);
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ================= FEATURES SECTION ================= */
.features {
    padding: 80px 8%;
    background: var(--bg-secondary);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: var(--bg-glass);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition-fast);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,0,85,0.3);
    background: rgba(20, 24, 34, 0.9);
}

.feature-box .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= STORE / GAME CARDS ================= */
.game-options {
    padding: 100px 8%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
}

.section-title span { color: var(--neon-primary); }

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--neon-primary);
    filter: blur(80px);
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 0;
}

.game-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255,0,85,0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.game-card:hover .card-glow { opacity: 0.3; }

.card-img {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.4s;
}

.game-card:hover .card-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--neon-primary);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tag {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag.coins { background: rgba(255, 215, 0, 0.1); color: #ffd700; border: 1px solid rgba(255, 215, 0, 0.3); }
.tag.uc { background: rgba(0, 240, 255, 0.1); color: #00f0ff; border: 1px solid rgba(0, 240, 255, 0.3); }
.tag.diamonds { background: rgba(188, 19, 254, 0.1); color: #bc13fe; border: 1px solid rgba(188, 19, 254, 0.3); }

/* ================= CTA BANNER ================= */
.cta-banner {
    background: linear-gradient(45deg, var(--neon-primary), #990033);
    padding: 60px 20px;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--neon-primary);
    box-shadow: none;
}

.cta-banner .btn-primary:hover {
    background: #000;
    color: #fff;
}

/* ================= FOOTER ================= */
footer {
    background: #030406;
    padding: 60px 8% 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 15px auto; }
}