/* ============================================
   PIN UP CASINO AZ — Premium Dark Blue + Gold
   ============================================ */

:root {
    --bg-primary: #0b1120;
    --bg-card: #111b2e;
    --bg-hover: #162040;
    --bg-hero: linear-gradient(135deg, #0b1120 0%, #0f1a30 40%, #1a2545 100%);
    --accent: #d4a853;
    --accent-light: #e8c06a;
    --accent-dark: #b8860b;
    --btn-cta: linear-gradient(135deg, #d4a853, #b8860b);
    --btn-cta-hover: linear-gradient(135deg, #e8c06a, #d4a853);
    --text: #8b9cc0;
    --text-heading: #f0f0f5;
    --text-white: #ffffff;
    --border: #1e2d4a;
    --border-gold: rgba(212, 168, 83, 0.3);
    --success: #4caf50;
    --warning: #ff6b35;
    --glass: rgba(17, 27, 46, 0.7);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 50px;
}

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

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-light); }

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

/* ============ HEADER ============ */
.header {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

.logo img { width: 120px; min-width: 100px; }

.nav { flex-grow: 1; }

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 6px;
}

.nav-list a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
}

.nav-list a:hover {
    color: var(--accent);
    background: rgba(212, 168, 83, 0.08);
}

.nav-list .nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    padding: 8px 18px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: var(--radius-sm);
    border: none;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-login:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-register, .btn-bonus, .btn-get {
    background: var(--btn-cta);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-register:hover, .btn-bonus:hover, .btn-get:hover {
    background: var(--btn-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(212, 168, 83, 0.25);
}

.btn-bonus {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: var(--radius-pill);
    display: inline-block;
}

.btn-get {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

/* ============ HERO ============ */
.hero {
    background: var(--bg-hero);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text { flex: 1; position: relative; z-index: 1; }

.hero-text h1 {
    color: var(--text-heading);
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 17px;
    margin-bottom: 18px;
    max-width: 560px;
    line-height: 1.7;
}

.bonus-highlight {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.hero-image { flex: 1; max-width: 100%; }

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    box-shadow: var(--shadow);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
}

.trust-item img { width: 24px; height: 24px; }
.trust-item strong { color: var(--accent); }

/* ============ BONUSES ============ */
.bonuses { padding: 50px 0; }

.bonuses h2, .section-title {
    color: var(--text-heading);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.bonus-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.bonus-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.bonus-title i {
    color: var(--accent);
    font-size: 1em;
}

.bonus-card h3 {
    color: var(--text-heading);
    font-size: 20px;
    font-weight: 700;
}

.bonus-card i { color: var(--accent); }

.bonus-description { font-size: 15px; }

.bonus-hidden {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.toggle-arrow {
    cursor: pointer;
    color: var(--accent);
    font-size: 16px;
    display: inline-block;
    margin-top: 4px;
}

/* ============ CONTENT ============ */
.content { padding: 0 0 30px; }

.content h2 {
    color: var(--text-heading);
    font-size: 28px;
    margin: 40px 0 18px;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
    font-weight: 700;
}

.content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content ul, .content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content li strong { color: var(--text-heading); }

.h1vn {
    text-align: center;
    color: var(--text-heading);
    font-size: 2.4em;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ============ TABLES ============ */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 16px 0;
}

.info-table, .content table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.info-table tr, .content table tr {
    transition: background 0.3s;
}

.info-table tr:hover, .content table tr:hover {
    background: var(--bg-hover);
}

.info-table td, .content table td {
    padding: 14px 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.content table th {
    padding: 14px 16px;
    font-size: 14px;
    text-align: left;
    color: var(--accent);
    background: var(--bg-hover);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-dark);
    white-space: nowrap;
}

.info-table i { margin-right: 8px; color: var(--accent); }

.content-image {
    width: 100%;
    border-radius: var(--radius);
    margin: 20px 0;
    border: 1px solid var(--border);
}

/* ============ TOC ============ */
.toc-arrow {
    color: var(--accent);
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.toc-arrow.active { transform: rotate(180deg); }

.toc-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.3s;
    padding: 0 20px;
    margin: 0 !important;
    list-style: none;
}

.toc-list.active {
    max-height: 600px;
    padding: 10px 20px 16px;
}

.toc-list li { margin: 6px 0; }

.toc-list a {
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.toc-list a:hover {
    color: var(--accent);
    background: rgba(212, 168, 83, 0.06);
}

.toc-list a i { color: var(--accent); font-size: 0.9rem; width: 18px; text-align: center; }

/* ============ FAQ ============ */
.faq-list { width: 100%; }

.faq-item {
    margin-bottom: 12px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-size: 17px;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover { background: var(--bg-hover); }
.faq-question i { color: var(--accent); font-size: 14px; }

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s;
}

.faq-answer p { margin: 12px 0; font-size: 15px; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding-left: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--text);
    transition: all 0.3s;
}

a .bc-pill:hover, .bc-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 168, 83, 0.06);
}

.bc-pill .bc-icon {
    width: 14px;
    height: 14px;
}

.bc-separator {
    width: 16px;
    height: 16px;
    opacity: 0.4;
}

/* ============ CONTENT META (Author + TOC) ============ */
.content-meta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 24px 0;
    overflow: hidden;
}

.content-meta-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.content-meta-header:hover { background: var(--bg-hover); }

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.author-meta { display: flex; flex-direction: column; gap: 1px; }

.author-name {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.author-name:hover { color: var(--accent-light); }

.author-role { color: var(--text); font-size: 12px; }

.meta-dates {
    margin-left: auto;
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.meta-dates time {
    color: var(--text);
    font-size: 12px;
    white-space: nowrap;
}

.meta-dates i { color: var(--accent); margin-right: 4px; }

.meta-toc-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 14px;
    border-left: 1px solid var(--border);
    flex-shrink: 0;
    color: var(--text-heading);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* ============ REVIEWS ============ */
.reviews { padding: 50px 0; }
.reviews h2 { color: var(--text-heading); font-size: 32px; text-align: center; margin-bottom: 40px; }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }

.review-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.review-header { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; }
.review-avatar { font-size: 50px; color: var(--accent); line-height: 1; }
.review-meta { display: flex; flex-direction: column; gap: 4px; }
.review-author { color: var(--text-heading); font-size: 16px; font-weight: 700; }
.review-details { color: var(--text); font-size: 13px; }
.rating-stars { color: var(--accent); font-size: 15px; }
.review-text { color: var(--text); font-size: 15px; line-height: 1.8; }

/* ============ FOOTER ============ */
.footer {
    background: #080e1a;
    padding: 36px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-nav {
    padding-bottom: 20px;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.footer-nav-list a {
    color: var(--text);
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.footer-nav-list a i { color: var(--accent); font-size: 11px; }
.footer-nav-list a:hover { color: var(--accent); }

.disclaimer {
    color: var(--text);
    font-size: 12px;
    line-height: 1.6;
    padding: 20px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 24px;
    text-align: center;
    opacity: 0.7;
}

.disclaimer a { color: var(--accent); }

.footer-authority {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-authority span {
    color: var(--text);
    font-size: 13px;
    opacity: 0.7;
}

.footer-authority a {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    transition: all 0.3s;
}

.footer-authority a:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--accent);
}

.copyright {
    color: var(--text);
    font-size: 11px;
    text-align: center;
    padding: 8px 0;
    opacity: 0.5;
}

/* ============ SCROLL TOP ============ */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--btn-cta);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s;
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

/* ============ RELATED TOPICS ============ */
.related-topics {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.related-topics h3 {
    color: var(--text-heading);
    margin-bottom: 12px;
}

.related-topics ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-topics a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-hover);
    border-radius: 20px;
    font-size: 13px;
}

/* ============ CONTACT FORM ============ */
.contact-form {
    max-width: 600px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    color: var(--text-heading);
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

/* ============ PULSE ANIMATION ============ */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.btn-register { animation: pulse 2.5s infinite; }

/* ============ AI SEO BLOCKS ============ */

/* Expert Quote */
.expert-quote {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(17, 27, 46, 0.9));
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin: 28px 0;
    position: relative;
}

.expert-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 64px;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.expert-quote p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-heading);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 8px;
}

.expert-quote cite {
    display: block;
    font-size: 14px;
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
    padding-left: 8px;
}

.expert-quote cite a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.expert-quote cite a:hover {
    color: var(--accent-light);
}

/* Evidence Block */
.evidence-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.evidence-claim {
    font-size: 17px;
    color: var(--text-heading);
    margin-bottom: 16px !important;
}

.evidence-list {
    list-style: none;
    padding-left: 0 !important;
    margin: 0 0 16px !important;
}

.evidence-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.evidence-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--success);
    font-size: 13px;
}

.evidence-conclusion {
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-bottom: 0 !important;
}

/* Self-Contained Answer Block */
.answer-block {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-hover));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.answer-block p {
    margin-bottom: 0 !important;
    font-size: 15px;
    line-height: 1.8;
}

.answer-block strong {
    color: var(--accent);
    font-size: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-text p { max-width: 100%; }
    .hero-image img { height: 270px; object-fit: cover; }
    .bonuses-grid { grid-template-columns: 1fr; }
    .trust-bar { gap: 20px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header-container { gap: 8px; }
    .logo img { width: 90px; min-width: 70px; }
    .nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(12px);
        padding: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav.active { display: block; }
    .nav-list { flex-direction: column; align-items: center; gap: 4px; }
    .hamburger { display: block; }
    .h1vn { font-size: 7vw; }
    .hero-text h1 { font-size: 32px; }
    .hero-image { display: none; }
    .content h2 { font-size: 22px; }
    .btn { padding: 6px 14px; font-size: 12px; }
    .footer-nav-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-items: center;
    }
    .trust-bar { flex-direction: column; align-items: center; gap: 12px; }
    .content-meta-header {
        flex-wrap: wrap;
        gap: 10px;
    }
    .meta-dates {
        order: 4;
        margin-left: 0;
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid var(--border);
    }
    .meta-toc-toggle {
        margin-left: auto;
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .logo img { width: 60px; height: 30px; }
    .hero-text h1 { font-size: 28px; }
    .hero-text p { font-size: 15px; }
    .bonus-highlight { font-size: 18px; }
    .content h2 { font-size: 20px; }
    .content p { font-size: 15px; }
    .scroll-top { width: 40px; height: 40px; font-size: 18px; right: 10px; bottom: 15px; }
    .content table td, .content table th { font-size: 13px; padding: 10px; }
    .meta-dates { gap: 10px; }
    .faq-question { font-size: 15px; padding: 14px 16px; }
    .expert-quote { padding: 18px 20px; margin: 20px 0; }
    .expert-quote::before { font-size: 48px; top: -4px; left: 10px; }
    .expert-quote p { font-size: 14px; }
    .expert-quote cite { font-size: 13px; }
    .evidence-block { padding: 18px; }
    .evidence-claim { font-size: 15px; }
    .answer-block { padding: 16px 18px; }
    .answer-block strong { font-size: 15px; }
}
