/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --brand-50: #fdf2f8;
    --brand-100: #fce7f3;
    --brand-200: #fbcfe8;
    --brand-300: #f9a8d4;
    --brand-400: #f472b6;
    --brand-500: #ec4899;
    --brand-600: #db2777;
    --brand-700: #be185d;
    --brand-800: #9d174d;
    --brand-900: #831843;

    /* Dark Colors */
    --dark-900: #0f0f11;
    --dark-800: #18181b;
    --dark-700: #27272a;
    --dark-600: #3f3f46;

    /* Text Colors */
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Other */
    --green-400: #4ade80;
    --green-500: #22c55e;
    --purple-500: #a855f7;
    --purple-900: #581c87;
    --green-900: #14532d;
    --orange-500: #f97316;
    --blue-500: #3b82f6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-900);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background-color: var(--brand-500);
    color: white;
}

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

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-sm {
    max-width: 768px;
}

.hidden {
    display: none !important;
}

.text-brand {
    color: var(--brand-500);
}

.text-green {
    color: var(--green-400);
    font-family: monospace;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, var(--brand-400), var(--brand-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(to right, var(--brand-600), var(--brand-500));
    color: white;
    border-color: var(--brand-500);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--brand-500), var(--brand-400));
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background-color: var(--dark-700);
    color: white;
    border-color: var(--dark-600);
}

.btn-secondary:hover {
    background-color: var(--dark-600);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(15, 15, 17, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-700);
    height: 4rem;
}

@media (min-width: 640px) {
    .header {
        height: 5rem;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--brand-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    transform: rotate(3deg);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--brand-400);
}

.header-buttons {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .header-buttons {
        display: flex;
    }
}

.header-buttons .btn {
    padding: 0.5rem 1rem;
}

.mobile-menu-toggle {
    display: block;
    color: white;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: var(--dark-900);
    padding-top: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
}

.mobile-nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-700);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 500px;
    background: radial-gradient(circle, rgba(219, 39, 119, 0.2) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--brand-400);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 672px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons .btn {
        width: auto;
    }
}

.hero-buttons .btn {
    width: 100%;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: rgba(24, 24, 27, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--dark-700);
    padding: 1rem;
    border-radius: 0.75rem;
}

.stat-value {
    color: var(--brand-500);
    font-weight: 700;
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-dark {
    background-color: rgba(24, 24, 27, 0.5);
}

.section-gradient {
    background: linear-gradient(to bottom, var(--dark-800), var(--dark-900));
}

.section-border {
    background-color: var(--dark-900);
    border-top: 1px solid var(--dark-800);
    border-bottom: 1px solid var(--dark-800);
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

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

.section-divider {
    height: 6px;
    width: 96px;
    background-color: var(--brand-500);
    margin: 1rem auto 0;
    border-radius: 9999px;
}

/* ===== CARDS ===== */
.card {
    background-color: var(--dark-800);
    border: 1px solid var(--dark-700);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.icon-shield {
    color: var(--brand-500);
}

/* ===== INFO SECTION ===== */
.info-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.spec-table {
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid var(--dark-700);
}

.spec-table table {
    width: 100%;
    font-size: 0.875rem;
    text-align: left;
}

.spec-table tr:nth-child(odd) {
    background-color: rgba(15, 15, 17, 0.3);
}

.spec-table td {
    padding: 0.75rem 1rem;
}

.spec-table td:first-child {
    font-weight: 500;
    color: var(--text-muted);
    width: 50%;
}

.spec-table td:last-child {
    color: var(--text-secondary);
    font-weight: 600;
}

.info-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.info-text {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.info-text p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .info-text p {
        font-size: 1rem;
    }
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-list .icon-check {
    color: var(--green-500);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.check-list span {
    color: var(--text-secondary);
}

/* ===== PAYMENT TABLE ===== */
.table-wrapper {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid var(--dark-700);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.payment-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.payment-table thead {
    background-color: var(--dark-800);
}

.payment-table th {
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-table tbody {
    background-color: rgba(15, 15, 17, 0.5);
}

.payment-table tbody tr {
    border-top: 1px solid var(--dark-700);
    transition: background-color 0.3s;
}

.payment-table tbody tr:hover {
    background-color: rgba(24, 24, 27, 0.5);
}

.payment-table td {
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
}

.payment-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: white !important;
}

.icon-card {
    color: var(--blue-500);
}

.icon-wallet {
    color: var(--brand-500);
}

.icon-bitcoin {
    color: var(--orange-500);
}

.table-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-muted);
}

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-card {
    display: block;
    background-color: var(--dark-900);
    border: 1px solid var(--dark-700);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.game-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-4px);
}

.game-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.game-card:hover .game-icon {
    transform: scale(1.1);
}

.game-icon-brand {
    background-color: rgba(157, 23, 77, 0.5);
    color: var(--brand-500);
}

.game-icon-purple {
    background-color: rgba(88, 28, 135, 0.5);
    color: var(--purple-500);
}

.game-icon-green {
    background-color: rgba(20, 83, 45, 0.5);
    color: var(--green-500);
}

.game-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.game-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== CONTENT BOX ===== */
.content-box {
    background-color: var(--dark-800);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.125rem;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--dark-800);
    border: 1px solid var(--dark-700);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    color: white;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid rgba(39, 39, 42, 0.5);
    padding-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: black;
    padding: 3rem 0;
    border-top: 1px solid var(--dark-800);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links h4,
.footer-security h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-500);
}

.security-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.security-icon {
    background-color: var(--dark-800);
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid var(--dark-700);
    color: var(--text-muted);
}

.age-warning {
    font-size: 0.75rem;
    color: var(--dark-600);
}

.footer-bottom {
    border-top: 1px solid var(--dark-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--dark-600);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-600);
}
