:root {
    /* Base Colors */
    --bg-dark: #050507;
    --bg-secondary: #0f0f14;
    --card-bg: rgba(255, 255, 255, 0.04);
    
    /* Sizzling Accent Colors */
    --neon-gold: #ffcc00;
    --flaming-orange: #ff6a00;
    --hot-red: #ff2e2e;
    --electric-pink: #ff00c8;
    --neon-purple: #7b2ff7;
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    /* Gradients */
    --heat-glow: linear-gradient(135deg, var(--hot-red), var(--neon-gold));
    --neon-pulse: linear-gradient(135deg, var(--electric-pink), var(--neon-purple));
    
    /* Glass properties */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
}

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

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

/* Organic Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--text-primary);
}

/* Typography Gradients */
.gradient-heat {
    background: var(--heat-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-neon {
    background: var(--neon-pulse);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.neon-text {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255,0,200,0.5);
}

.gold-text {
    color: var(--neon-gold);
    text-shadow: 0 0 10px rgba(255,204,0,0.5);
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%); /* JS will slide down */
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background: var(--heat-glow);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    transform: translateY(-2px);
}

.btn-hero {
    display: inline-block;
    margin-top: 2rem;
    background: transparent;
    border: 2px solid var(--neon-gold);
    color: var(--neon-gold);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.2), inset 0 0 10px rgba(255, 204, 0, 0.2);
}

.btn-hero:hover {
    background: var(--neon-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.8), inset 0 0 20px rgba(255, 204, 0, 0.8);
    transform: scale(1.05);
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 106, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transform: scale(1.1); /* for slow zoom */
}

.blurred-bg {
    filter: blur(8px);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 2;
    opacity: 0.5;
}

.orb-1 {
    width: 400px; height: 400px;
    background: var(--hot-red);
    top: -100px; left: -100px;
}

.orb-2 {
    width: 500px; height: 500px;
    background: var(--neon-purple);
    bottom: -200px; right: -100px;
}

#particles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.legal-glass-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 204, 0, 0.05);
}

.warning-text {
    color: var(--neon-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Section Common */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.inner-shadow {
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
}

/* Game Showcase */
.game-showcase {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-secondary));
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1000px;
}

.game-glow-border {
    padding: 3px;
    background: var(--heat-glow);
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-glow-border:hover {
    transform: scale(1.01);
    box-shadow: 0 0 60px rgba(255, 204, 0, 0.5);
}

.game-container {
    background: #000;
    border-radius: 21px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 10;
    position: relative;
}

.spin-energy-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    background: radial-gradient(circle, rgba(255,204,0,0.8) 0%, rgba(255,106,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
}

/* Hot Streak Section */
.hot-streak {
    background: var(--bg-dark);
    overflow: hidden;
}

.streak-slider {
    width: 100%;
    overflow-x: hidden;
    padding: 2rem 0;
}

.streak-track {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
}

.streak-card {
    min-width: 300px;
    flex: 0 0 auto;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-left: 2px solid var(--flaming-orange);
}

.streak-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px var(--flaming-orange));
}

.streak-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.streak-card p {
    color: var(--text-secondary);
}

/* Feature Grid */
.feature-grid {
    background: var(--bg-secondary);
}

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

.feature-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 200, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 200, 0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

.shine-sweep {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.feature-card:hover .shine-sweep {
    animation: sweep 0.8s ease-in-out;
}

@keyframes sweep {
    100% { left: 200%; }
}

/* Parallax Section */
.parallax-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background: url('images/neon-city-bg.jpg') center/cover no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 3rem 4rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.parallax-text {
    font-size: 4rem;
    background: var(--neon-pulse);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Trust Section */
.trust-safety {
    background: var(--bg-dark);
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-card.minimal {
    flex: 1;
    min-width: 250px;
    text-align: center;
    border: none;
    background: transparent;
    padding: 1rem;
}

.trust-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.trust-card.minimal h4 {
    margin-bottom: 0.5rem;
}

.trust-card.minimal p {
    color: var(--text-secondary);
}

/* Footer */
.main-footer {
    background: #020203;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.company-details {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    line-height: 1.8;
}

.company-email {
    color: var(--neon-gold);
    margin-top: 1rem;
}

.footer-links {
    min-width: 200px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--flaming-orange);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: justify;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

/* Inner Pages (About, Contact, Legal) */
.inner-page .glass-header {
    transform: translateY(0);
}

.page-content {
    padding-top: 100px;
}

.inner-hero {
    text-align: center;
    padding: 6rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.inner-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.inner-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.text-container {
    max-width: 800px;
    margin: 0 auto 6rem;
    line-height: 1.8;
}

.text-container h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    color: var(--neon-gold);
}

.text-container p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #cbd5e1;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.neon-link {
    color: var(--electric-pink);
    text-decoration: underline;
}

/* Contact Page Layout */
.contact-layout {
    max-width: 1000px;
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--flaming-orange);
}

.info-block p {
    color: #cbd5e1;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.glass-input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.glass-input:focus {
    outline: none;
    border-color: var(--neon-gold);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.form-submit {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .parallax-text { font-size: 3rem; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile menu toggle logic left to JS if needed */
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .parallax-text { font-size: 2rem; }
    .game-container { border-radius: 10px; }
}