/* Premium Casino / Cyber Neon Style */
:root {
    --bg-dark: #0a0b10;
    --bg-card: rgba(22, 24, 38, 0.6);
    --bg-card-hover: rgba(32, 35, 55, 0.8);
    --primary-neon: #ff007f;
    --secondary-neon: #00f3ff;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,0,127,0.1) 0%, rgba(10,11,16,0) 70%);
    z-index: -1;
    pointer-events: none;
}
.glow-bg-2 {
    top: auto;
    bottom: -20%;
    left: auto;
    right: -10%;
    background: radial-gradient(circle, rgba(0,243,255,0.1) 0%, rgba(10,11,16,0) 70%);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}
h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, var(--primary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
h3 {
    font-size: 1.3rem;
    color: var(--secondary-neon);
}
p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}
a {
    text-decoration: none;
    color: var(--secondary-neon);
    transition: var(--transition);
}
a:hover {
    color: var(--primary-neon);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.section {
    padding: 5rem 0;
}
.alt-bg {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.text-center { text-align: center; }
.left-align { text-align: left; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
}
.btn-primary {
    background: linear-gradient(45deg, var(--primary-neon), #ff4d9e);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--secondary-neon) !important;
    border: 2px solid var(--secondary-neon);
}
.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}
.arrow {
    margin-left: 8px;
    transition: var(--transition);
}
.btn-primary:hover .arrow {
    transform: translateX(5px);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
}
.shadow-cyan:hover { box-shadow: 0 10px 40px rgba(0,243,255,0.15); border-color: var(--secondary-neon); }
.shadow-magenta:hover { box-shadow: 0 10px 40px rgba(255,0,127,0.15); border-color: var(--primary-neon); }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo-img {
    height: 40px;
    display: block;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-menu a:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px rgba(0,243,255,0.5);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    color: var(--secondary-neon);
    border: 1px solid var(--secondary-neon);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.image-wrapper {
    position: relative;
    padding: 10px;
    overflow: hidden;
}
.image-wrapper img {
    width: 100%;
    border-radius: calc(var(--radius) - 5px);
    display: block;
    transition: transform 0.5s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
.caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    padding: 1rem;
    font-size: 0.85rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}
.image-wrapper:hover .caption-overlay {
    transform: translateY(0);
}
.floating-img {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin-top: 2rem;
}
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
th, td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
th {
    background: rgba(255,255,255,0.02);
    font-family: var(--font-heading);
    color: var(--secondary-neon);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
tr:hover td {
    background: rgba(255,255,255,0.03);
}

/* Highlight Box */
.highlight-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.icon-box {
    font-size: 4rem;
    background: -webkit-linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.step-card {
    position: relative;
    padding-top: 3rem;
}
.step-num {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-neon);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255,0,127,0.5);
}
.step-full { grid-column: 1 / -1; }

/* Lists */
.custom-list {
    list-style: none;
}
.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.custom-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--secondary-neon);
    font-weight: bold;
    font-size: 1.2rem;
}

.custom-ol {
    counter-reset: custom-counter;
    list-style: none;
}
.custom-ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.custom-ol li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 25px;
    height: 25px;
    background: rgba(0,243,255,0.1);
    color: var(--secondary-neon);
    border: 1px solid var(--secondary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Split Layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.align-center { align-items: center; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

/* Check Grid */
.checklist-card { border-top: 4px solid var(--secondary-neon); }
.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.check-item {
    background: rgba(0,243,255,0.05);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 2px solid var(--secondary-neon);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.game-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Payment Section */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.border-cyan { border-top: 3px solid var(--secondary-neon); }
.border-magenta { border-top: 3px solid var(--primary-neon); }
.border-green { border-top: 3px solid #00ff88; }
.border-red { border-top: 3px solid #ff3366; }

/* 2 Col Grid */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.check-list li { list-style: none; position: relative; padding-left: 25px; margin-bottom: 0.8rem; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: #00ff88; }
.cross-list li { list-style: none; position: relative; padding-left: 25px; margin-bottom: 0.8rem; }
.cross-list li::before { content: "✘"; position: absolute; left: 0; color: #ff3366; }

/* Verdict */
.verdict-badge {
    display: inline-block;
    background: var(--primary-neon);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.responsible-gaming {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--radius);
    background: rgba(0,0,0,0.3);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    padding: 0;
    overflow: hidden;
}
.faq-item summary {
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    color: var(--secondary-neon);
    font-size: 1.5rem;
    transition: var(--transition);
}
.faq-item[open] summary::after {
    content: "−";
    color: var(--primary-neon);
}
.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Footer */
.footer {
    background: #050608;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-warning {
    border-left: 2px solid var(--primary-neon);
    padding-left: 1.5rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

/* Animations Reveal */
.reveal-up { opacity: 0; transform: translateY(40px); transition: 0.8s all ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: 0.8s all ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: 0.8s all ease; }
.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Rating */
.rating {
    background: rgba(0,243,255,0.1);
    color: var(--secondary-neon);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container, .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .hero { padding-top: 120px; text-align: center; }
    .hero-actions { justify-content: center; }
    .reverse > * { direction: ltr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .highlight-inner { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 11, 16, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.4s ease-in-out;
    }
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .header .btn-primary { display: none; }
    .mobile-toggle { display: flex; }
    
    .payment-grid, .grid-2-col { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    .glass-panel { padding: 1.5rem; }
}
