/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
header {
    background-color: #2b3b4b;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Hamburger Menu - Hidden on Desktop */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFA500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero .intro {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Casinos Section */
.casinos-section {
    padding: 4rem 0;
    background-color: #fff;
}

.casinos-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2b3b4b;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Casino Grid - 3 columns */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Compact Casino Card */
.casino-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Rank Badge */
.casino-rank {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Badge */
.badge {
    background-color: #FFA500;
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.badge-secondary {
    background-color: #FF8C00;
    color: white;
}

.badge-crypto {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
}

/* Casino Logo Area */
.casino-logo {
    width: 100%;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: linear-gradient(135deg, #2b3b4b 0%, #3d4f5f 100%);
    border-radius: 8px;
    margin: 0 auto 1.5rem;
}

.casino-logo img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.casino-logo h3 {
    font-size: 1.8rem;
    color: #2b3b4b;
    font-weight: 700;
    margin: 0;
}

/* Casino Bonus */
.casino-bonus {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 1.2rem;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.bonus-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 0.3rem;
}

.bonus-extra {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Casino USPs */
.casino-usps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

.casino-usps li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.8rem;
    text-align: left;
}

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

.casino-usps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #666666 0%, #FFA500 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #777777 0%, #FFB520 100%);
}

/* Terms & Conditions */
.terms-conditions {
    font-size: 0.7rem;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* Old styles to be removed */
.casino-header,
.casino-info,
.info-grid,
.info-item,
.casino-description,
.pros-cons,
.pros,
.cons {
    display: none;
}

/* Comparison Table */
.comparison-table {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

/* Content Section with Text and CTA */
.content-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.content-main-title {
    font-size: 2.5rem;
    text-align: center;
    color: #2b3b4b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.content-box {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Review Banner */
.review-banner {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Review Rating */
.review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-stars {
    font-size: 1.5rem;
    color: #FFA500;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b3b4b;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

/* Quick Facts Table */
.quick-facts {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #FF8C00;
}

.quick-facts h3 {
    color: #2b3b4b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quick-facts table {
    width: 100%;
    border-collapse: collapse;
}

.quick-facts table tr {
    border-bottom: 1px solid #e0e0e0;
}

.quick-facts table tr:last-child {
    border-bottom: none;
}

.quick-facts table td {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: #555;
}

.quick-facts table td:first-child {
    width: 40%;
}

.quick-facts table strong {
    color: #2b3b4b;
    font-weight: 600;
}

/* Pros and Cons Container */
.pros-cons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros-box,
.cons-box {
    padding: 1.5rem;
    border-radius: 8px;
}

.pros-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-left: 4px solid #4caf50;
}

.cons-box {
    background: linear-gradient(135deg, #ffebee 0%, #fff5f5 100%);
    border-left: 4px solid #f44336;
}

.pros-box h3,
.cons-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pros-box h3 {
    color: #2e7d32;
}

.cons-box h3 {
    color: #c62828;
}

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

.pros-box li,
.cons-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pros-box li {
    color: #2e7d32;
}

.cons-box li {
    color: #c62828;
}

.pros-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.cons-box li:before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Verdict Box */
.verdict-box {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-left: 4px solid #FF8C00;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.verdict-box h3 {
    margin-top: 0;
}

/* Review verdict highlight */
.content-box p.content-text strong {
    color: #FF8C00;
    font-weight: 700;
}

.content-title {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-subtitle {
    font-size: 1.5rem;
    color: #FF8C00;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Responsive for Pros/Cons */
@media (max-width: 768px) {
    .pros-cons-container {
        grid-template-columns: 1fr;
    }
    
    .review-rating {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-facts table td:first-child {
        width: 50%;
    }
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.content-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.content-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-weight: bold;
    font-size: 1.2rem;
}

.content-cta {
    display: inline-block;
    background: linear-gradient(135deg, #666666 0%, #FFA500 100%);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #777777 0%, #FFB520 100%);
}

.content-cta-secondary {
    background: linear-gradient(135deg, #666666 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.content-cta-secondary:hover {
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
    background: linear-gradient(135deg, #777777 0%, #FFB520 100%);
}

/* Comparison Table */
.comparison-table {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.comparison-table h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2b3b4b;
}

.table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
}

th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
}

tbody tr:hover {
    background-color: #f5f5f5;
}

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

/* Games Section */
.games-section {
    padding: 4rem 0;
    background-color: #fff;
}

.games-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2b3b4b;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF8C00;
}

.game-card p {
    color: #666;
    line-height: 1.7;
}

/* Bonuses Section */
.bonuses-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.bonuses-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2b3b4b;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #FFA500;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2b3b4b;
}

.bonus-card p {
    color: #666;
    line-height: 1.7;
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background-color: #fff;
}

.payment-methods h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2b3b4b;
}

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

.payment-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF8C00;
    transition: background-color 0.3s ease;
}

.payment-card:hover {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FF8C00;
}

.payment-card p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2b3b4b;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FF8C00;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* Responsible Gambling */
.responsible-gambling {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
}

.responsible-gambling h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.responsible-gambling p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.responsible-gambling ul {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.responsible-gambling li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.responsible-gambling li:before {
    content: "⚠ ";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #2b3b4b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFA500;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFA500;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFA500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    /* Content Section Responsive */
    .content-main-title {
        font-size: 1.8rem;
    }
    
    .content-box {
        padding: 2rem 1.5rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .content-subtitle {
        font-size: 1.2rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .content-cta {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    /* Show Hamburger Menu */
    .hamburger {
        display: flex;
    }
    
    /* Hide Navigation by Default */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2b3b4b;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    nav li {
        border-bottom: 1px solid #3a4a5a;
    }
    
    nav a {
        display: block;
        padding: 1rem 1.5rem;
    }
    
    /* Show Menu When Checked */
    .menu-toggle:checked ~ nav {
        max-height: 500px;
    }
    
    /* Animate Hamburger Icon */
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    header .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .casino-card {
        padding: 1.5rem 1rem;
    }
    
    .casino-logo h3 {
        font-size: 1.5rem;
    }
    
    .casino-logo img {
        max-width: 140px;
    }
    
    .bonus-amount {
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
}
/* ========================================
   REVIEW NAVIGATION SUBMENU
   ======================================== */

.review-navigation {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-nav-title {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.review-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-nav-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.review-nav-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.review-nav-item:hover .review-nav-number {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.review-nav-name {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.review-nav-item:hover .review-nav-name {
    color: #d4af37;
}

/* ========================================
   SCROLL BEHAVIOR
   ======================================== */

/* Add smooth scroll offset for better UX when jumping to reviews */
#review-vegasnow,
#review-lukki,
#review-justcasino,
#review-luckyones,
#review-luckydreams,
#review-letslucky,
#review-betpanda,
#review-cryptopunkz,
#review-bitstarz,
#review-betplay {
    scroll-margin-top: 100px;
}

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

@media (max-width: 768px) {
    .review-navigation {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .review-nav-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .review-nav-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .review-nav-item {
        padding: 12px 15px;
    }
    
    .review-nav-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .review-nav-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .review-navigation {
        padding: 15px;
        border-width: 1px;
    }
    
    .review-nav-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .review-nav-item {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .review-nav-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .review-nav-name {
        font-size: 0.9rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.review-nav-item:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
}

.review-nav-item:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .review-navigation {
        border-width: 3px;
    }
    
    .review-nav-item {
        border-width: 2px;
    }
    
    .review-nav-item:hover {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .review-nav-item,
    .review-nav-number,
    .review-nav-name {
        transition: none;
    }
    
    .review-nav-item:hover {
        transform: none;
    }
    
    .review-nav-item:hover .review-nav-number {
        transform: none;
    }
}