/* ============================================
   Cleopatra Casino Play — Global Stylesheet
   Extracted from index.astro inline <style>
   ============================================ */

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

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-alt: #151515;
    --gold-primary: #C9A227;
    --gold-light: #D4AF37;
    --gold-dark: #8B6914;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light: #d1d5db;
    --border-gold: rgba(201, 162, 39, 0.3);
    --green: #22c55e;
    --red: #ef4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
}

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

a:hover {
    color: var(--gold-primary);
}

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

/* Header */
.header {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--bg-dark) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
}

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

.logo img {
    height: 45px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a,
.nav-item {
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

.nav a:hover,
.nav-item:hover {
    color: var(--gold-primary);
}

.nav-item[aria-current="page"] {
    color: var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 2px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.3) 70%, transparent 100%),
                url('/img/banner-1--desk.jpg') 65% center/cover no-repeat;
    border-bottom: 2px solid var(--border-gold);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--gold-light);
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-meta {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.hero-disclaimer {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 15px 25px;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.rating-label {
    font-size: 14px;
    color: var(--text-gray);
}

.rating-stars {
    color: var(--gold-primary);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--bg-card-alt);
}

.mobile-section {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 60%, rgba(10, 10, 10, 0.4) 100%),
                url('/img/banner-2--desk.jpg') right center/cover no-repeat;
}

.section-title {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--gold-primary);
}

.subsection-title {
    font-size: 1.4rem;
    color: var(--text-white);
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subsection-title i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Quick Facts Box */
.quick-facts {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.quick-facts-title {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.fact-item {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.fact-value {
    font-weight: 600;
    color: var(--text-white);
}

/* Content with Image */
.content-with-image {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.content-text {
    flex: 1;
}

.content-image {
    width: 35%;
    flex-shrink: 0;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--border-gold);
}

.float-image-right {
    float: right;
    width: 30%;
    margin: 0 0 20px 25px;
    border-radius: 12px;
    border: 2px solid var(--border-gold);
}

.full-width-image {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--border-gold);
    margin: 20px 0;
    display: block;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-gold);
}

th {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--bg-dark);
    font-weight: 600;
}

td {
    color: var(--text-light);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(201, 162, 39, 0.05);
}

/* Bonus Cards */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.bonus-card-title {
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 10px;
}

.bonus-card-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.bonus-card-spins {
    color: var(--gold-light);
    font-size: 14px;
}

/* Lists */
ul, ol {
    margin: 15px 0 15px 25px;
    color: var(--text-light);
}

li {
    margin-bottom: 8px;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.feature-list li i {
    color: var(--gold-primary);
    margin-top: 4px;
}

/* Game Contribution */
.contribution-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.contribution-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 8px;
}

.contribution-list li span:last-child {
    color: var(--gold-primary);
    font-weight: 600;
}

/* VIP Section */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.vip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.vip-card img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.vip-card h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

/* Provider Grid */
.provider-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.provider-item strong {
    color: var(--gold-primary);
}

/* Pros Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 25px 0;
}

.pros-box, .cons-box {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
}

.pros-box {
    border: 1px solid var(--green);
}

.cons-box {
    border: 1px solid var(--red);
}

.pros-box h3 {
    color: var(--green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cons-box h3 {
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-box ul, .cons-box ul {
    list-style: none;
    margin: 0;
}

.pros-box li, .cons-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.pros-box li i {
    color: var(--green);
    margin-top: 4px;
}

.cons-box li i {
    color: var(--red);
    margin-top: 4px;
}

/* FAQ */
.faq-section details {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-section summary {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-white);
    transition: background 0.3s;
    list-style: none;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold-primary);
    transition: transform 0.3s;
    font-size: 0.85rem;
}

.faq-section details[open] summary::after {
    transform: rotate(180deg);
}

.faq-section summary:hover {
    background: rgba(201, 162, 39, 0.1);
}

.faq-section details > *:not(summary) {
    padding: 0 25px;
}

.faq-section details > *:last-child {
    padding-bottom: 20px;
}

/* Legacy FAQ (from original index.astro) */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(201, 162, 39, 0.1);
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Verdict */
.verdict-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
}

.verdict-rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.verdict-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Author Block */
.author-section {
    padding: 50px 0;
    background: var(--bg-card-alt);
    border-top: 1px solid var(--border-gold);
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--gold-primary);
}

.author-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-icon i {
    font-size: 45px;
    color: var(--bg-dark);
}

.author-info {
    flex: 1;
}

.author-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.author-bio {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.author-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.author-stat i {
    color: var(--gold-primary);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

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

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-license {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 10px;
}

.footer-logo-img {
    margin-bottom: 15px;
}

.footer p {
    font-size: 13px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-button {
    text-align: center;
    margin: 30px 0;
}

.cta-wrapper {
    text-align: center;
    margin: 30px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-banner h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-banner p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Games Preview */
.games-preview {
    margin: 30px 0;
}

.games-preview img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--border-gold);
}

/* Support Testing */
.testing-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.testing-box h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
}

/* Registration Steps */
.steps-list {
    counter-reset: step;
    list-style: none;
    margin: 20px 0;
}

.steps-list li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 8px;
}

.steps-list li::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gold-primary);
    color: var(--bg-dark);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   NEW CLASSES — Multi-page site additions
   ============================================ */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-card-alt);
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-gold);
}

.breadcrumbs a {
    color: var(--gold-primary);
}

.breadcrumbs .sep {
    color: var(--text-gray);
    margin: 0 8px;
}

.breadcrumbs span:last-child {
    color: var(--text-gray);
}

/* Legal pages */
.legal-hero {
    padding: 50px 0 30px;
    background: var(--bg-card-alt);
    border-bottom: 1px solid var(--border-gold);
}

.legal-hero h1 {
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.legal-hero .hero-intro {
    font-size: 1rem;
    color: var(--text-gray);
}

.legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-gold);
}

/* Content sections (generated pages) */
.content-section {
    padding: 30px 0;
}

.content-section h2 {
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin: 25px 0 12px;
}

.content-intro {
    padding-top: 0;
}

/* Content figures (inline images) */
.content-figure {
    margin: 25px 0;
    text-align: center;
}

.content-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--border-gold);
}

.content-figure figcaption {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Author box (compact, on content pages) */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--gold-primary);
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-avatar-initials {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}

.author-box-body {
    flex: 1;
}

.author-box-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.author-box-title {
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.author-box-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.author-box-link {
    font-size: 0.85rem;
}

.author-box-link a {
    color: var(--gold-primary);
}

/* Review quote blocks */
.review-quote {
    background: var(--bg-card);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 12px 12px 0;
    padding: 20px 25px;
    margin: 20px 0;
}

.review-quote cite {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-top: 10px;
    font-style: normal;
}

/* Blockquote general */
blockquote {
    background: var(--bg-card);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 12px 12px 0;
    padding: 20px 25px;
    margin: 20px 0;
}

blockquote cite {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-top: 10px;
    font-style: normal;
}

/* Footer authorities grid */
.footer-authorities {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-gold);
}

.footer-authorities-title {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-align: center;
}

.footer-authorities-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-authorities-grid li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-authorities-grid li a:hover {
    color: var(--gold-primary);
}

.footer-authorities-grid li img {
    border-radius: 6px;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gold);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    color: var(--text-gray);
    background: var(--bg-card-alt);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(0,0,0,.4);
}

.scroll-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 2px solid var(--gold-primary);
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav a,
    .nav .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-gold);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .content-with-image {
        flex-direction: column;
    }

    .content-image {
        width: 100%;
    }

    .bonus-grid, .vip-grid, .facts-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .float-image-right {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-buttons .btn-outline {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .author-stats {
        justify-content: center;
    }

    .footer-authorities-grid {
        gap: 15px;
    }
}
