/* ============================================
   DESIGN SYSTEM
   ============================================ */

:root {
    --orange: #F97316;
    --orange-dark: #EA6C0A;
    --orange-light: #FFF7ED;
    --blue: #1D4ED8;
    --blue-dark: #1E3A8A;
    --blue-light: #EFF6FF;
    --black: #0F172A;
    --dark: #1E293B;
    --grey-dark: #475569;
    --grey: #94A3B8;
    --grey-light: #E2E8F0;
    --grey-bg: #F8FAFC;
    --white: #FFFFFF;
    --success: #16A34A;
    --warning: #D97706;

    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --transition: 200ms ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--grey-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: var(--orange-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    background: var(--black);
    padding: 5rem 2rem;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29,78,216,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--orange);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.25px;
    line-height: 1;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-gradient {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

.btn-gradient:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

/* ============================================
   METADATA BOX
   ============================================ */

.metadata-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 10;
}

.metadata-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 3px solid var(--orange);
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.metadata-label {
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.metadata-value {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .metadata-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .metadata-box {
        margin-top: -1rem;
    }
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-dark);
    line-height: 1.7;
}

/* ============================================
   CASINO COMPARISON TABLE
   ============================================ */

.casino-comparison-table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-light);
}

.casino-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.casino-comparison-table thead {
    background: var(--black);
    color: var(--white);
}

.casino-comparison-table thead th {
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.78rem;
    color: var(--grey);
}

.casino-comparison-table thead th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.casino-comparison-table thead th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.casino-comparison-table tbody tr {
    border-bottom: 1px solid var(--grey-light);
    transition: background var(--transition);
}

.casino-comparison-table tbody tr.clickable-row {
    cursor: pointer;
}

.casino-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.casino-comparison-table tbody tr:hover {
    background: var(--grey-bg);
}

.casino-comparison-table tbody tr.featured-row {
    background: var(--orange-light);
}

.casino-comparison-table tbody tr.featured-row:hover {
    background: #FEE9D0;
}

.casino-comparison-table tbody td {
    padding: 1.1rem 1.25rem;
    vertical-align: middle;
}

.casino-name-cell {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.casino-name-cell strong {
    font-size: 1rem;
    color: var(--black);
    font-weight: 800;
}

.table-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    width: fit-content;
}

.table-badge.hot {
    background: #FEF3C7;
    color: #92400E;
}

.table-badge.new {
    background: var(--blue-light);
    color: var(--blue);
}

.table-badge.verified {
    background: #DCFCE7;
    color: #166534;
}

.table-badge.mega {
    background: #FEE2E2;
    color: #991B1B;
}

.table-badge.bonus {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.table-badge.premium {
    background: var(--grey-light);
    color: var(--dark);
}

.table-badge.instant {
    background: #FFF7ED;
    color: #9A3412;
}

.casino-comparison-table code {
    background: var(--orange-light);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--orange-dark);
    border: 1px dashed var(--orange);
    font-size: 0.88rem;
}

.no-code {
    color: var(--grey);
    font-size: 0.9rem;
    font-style: italic;
}

.type-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-badge.no-deposit {
    background: #DCFCE7;
    color: #166534;
}

.type-badge.deposit {
    background: var(--blue-light);
    color: var(--blue);
}

.table-claim-btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
    white-space: nowrap;
}

.table-claim-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

@media screen and (max-width: 768px) {
    .casino-comparison-table thead {
        display: none;
    }

    .casino-comparison-table tbody tr {
        display: block;
        margin-bottom: 1.25rem;
        border: 1px solid var(--grey-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .casino-comparison-table tbody tr:hover {
        background: var(--white);
    }

    .casino-comparison-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--grey-light);
        text-align: right;
    }

    .casino-comparison-table tbody td:last-child {
        border-bottom: none;
        justify-content: center;
    }

    .casino-comparison-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.75rem;
        color: var(--grey);
        letter-spacing: 0.5px;
    }

    .casino-comparison-table tbody td:first-child {
        background: var(--black);
        color: var(--white);
    }

    .casino-comparison-table tbody td:first-child::before {
        color: var(--grey);
    }

    .casino-name-cell {
        align-items: flex-end;
    }

    .casino-name-cell strong {
        color: var(--white);
    }

    .table-claim-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   CASINO CARDS
   ============================================ */

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.casino-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--grey-light);
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.casino-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--orange);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
}

.casino-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.35rem;
}

.casino-rating {
    display: flex;
    gap: 2px;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.star {
    color: var(--orange);
}

.casino-bonus {
    background: var(--grey-bg);
    border: 1px solid var(--grey-light);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

.bonus-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.bonus-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--orange-dark);
    border: 1px dashed var(--orange);
    margin-top: 0.35rem;
}

.casino-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.casino-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--grey-dark);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--grey-light);
}

.casino-features li:last-child {
    border-bottom: none;
}

.casino-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.casino-link {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: var(--orange);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.92rem;
}

.casino-link:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--grey-light);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.65rem;
}

.feature-text {
    color: var(--grey-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   STEPS / HOW TO
   ============================================ */

.steps-container {
    max-width: 800px;
    margin: 2.5rem auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 58px;
    bottom: -24px;
    width: 2px;
    background: var(--grey-light);
}

.step:last-child::before {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-light);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.step-text {
    color: var(--grey-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */

.faq-container {
    max-width: 800px;
    margin: 2.5rem auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    border: 1px solid var(--grey-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--orange);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    font-size: 1.25rem;
    transition: var(--transition);
    color: var(--orange);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: var(--orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--grey-dark);
    line-height: 1.8;
    font-size: 0.95rem;
    border-top: 1px solid var(--grey-light);
    padding-top: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============================================
   INFO BOXES
   ============================================ */

.info-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.info-box.warning {
    background: #FFF7ED;
    border-left-color: var(--orange);
}

.info-box.success {
    background: #F0FDF4;
    border-left-color: var(--success);
}

.info-box-title {
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.info-box-text {
    color: var(--grey-dark);
    line-height: 1.7;
    font-size: 0.93rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-text {
    color: var(--grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--orange);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 440px;
        padding: 3.5rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step::before {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .nav-container {
        padding: 0 1.25rem;
        height: 64px;
    }

    .section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fade-in {
    animation: fadeInUp 0.5s ease-out;
}

/* ============================================
   UTILITIES
   ============================================ */

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

.text-gradient {
    color: var(--orange);
}

.mt-lg {
    margin-top: 2rem;
}

.mb-lg {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}