* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --dark-navy: #0a1628;
    --deep-purple: #1a0f2e;
    --accent-red: #c9302c;
    --light-gold: #f4e4c1;
    --dark-bg: #050a14;
    --card-bg: #111b2d;
    --text-light: #e8e8e8;
    --text-muted: #a0a0a0;
    --border-color: #2a3f5f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 15, 46, 0.95) 100%);
    z-index: -1;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-content {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-navy) 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-gold);
    max-width: 500px;
}

.age-gate-content h2 {
    color: var(--primary-gold);
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.age-gate-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 20px;
    border-top: 2px solid var(--primary-gold);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.btn-primary,
.btn-accept {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
    color: var(--dark-navy);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover,
.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-modern {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-top {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-navy) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
}

.header-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-badge {
    font-size: 13px;
    color: var(--light-gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-main {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--deep-purple) 100%);
    border-bottom: 3px solid var(--primary-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-modern img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.nav-modern ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.hero-modern {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-navy) 50%, var(--deep-purple) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(201, 48, 44, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 48, 44, 0.15) 0%, transparent 70%);
    top: 50%;
    right: -50px;
    animation-delay: -10s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    bottom: -50px;
    left: 50%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

.hero-title {
    margin-bottom: 25px;
}

.title-main {
    display: block;
    font-size: 38px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    font-size: 68px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.header {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--deep-purple) 100%);
    border-bottom: 3px solid var(--primary-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav a:hover {
    color: var(--primary-gold);
}

.hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 48, 44, 0.1) 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 22px;
    color: var(--light-gold);
    max-width: 700px;
    margin: 0 auto;
}

.casinos-section {
    margin-bottom: 60px;
}

.casinos-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 40px;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.casino-card-horizontal {
    background: linear-gradient(135deg, var(--card-bg) 0%, #0d1420 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.casino-card-horizontal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card-horizontal:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.casino-card-horizontal:hover::before {
    opacity: 1;
}

.casino-logo-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
}

.casino-logo-horizontal {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.casino-info {
    flex: 1;
    min-width: 0;
}

.casino-info h3 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.casino-features-horizontal {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.casino-features-horizontal li {
    color: var(--text-muted);
    font-size: 14px;
}

.casino-action {
    flex-shrink: 0;
}

.btn-visit-horizontal {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
    color: var(--dark-navy);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.btn-visit-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.casino-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #a02622 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.casino-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: var(--primary-gold);
    font-size: 20px;
}

.score {
    font-size: 18px;
    font-weight: bold;
    color: var(--light-gold);
}

.casino-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.casino-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.btn-visit {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
    color: var(--dark-navy);
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.info-section,
.how-we-review,
.faq-section,
.disclaimer-section {
    margin-bottom: 60px;
}

.info-section h2,
.how-we-review h2,
.faq-section h2,
.disclaimer-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.info-card h3 {
    color: var(--primary-gold);
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.how-we-review p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.review-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.criteria-item {
    background: var(--card-bg);
    border-left: 4px solid var(--primary-gold);
    padding: 20px;
    border-radius: 5px;
}

.criteria-item strong {
    display: block;
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.criteria-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.disclaimer-section {
    margin-top: 60px;
}

.disclaimer-box {
    background: linear-gradient(135deg, var(--accent-red) 0%, #8a1f1c 100%);
    border: 2px solid var(--accent-red);
    border-radius: 10px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-box p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: var(--primary-gold);
}

.footer {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--deep-purple) 100%);
    border-top: 3px solid var(--primary-gold);
    margin-top: 80px;
    padding: 50px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.regulators {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.regulator-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.regulator-link:hover {
    color: var(--primary-gold);
}

.regulator-link img {
    height: 30px;
    width: auto;
    filter: brightness(0.9);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.gambling-warning {
    color: var(--accent-red);
    font-weight: bold;
    margin-top: 15px;
}

.content-page {
    padding: 40px 20px;
    max-width: 900px;
}

.content-page h1 {
    font-size: 42px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-align: center;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 22px;
    color: var(--light-gold);
    margin-bottom: 15px;
    margin-top: 20px;
}

.content-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    color: var(--text-muted);
    line-height: 1.8;
    margin-left: 30px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 10px;
}

.content-section a {
    color: var(--primary-gold);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

.highlight-text {
    background: var(--card-bg);
    border-left: 4px solid var(--accent-red);
    padding: 20px;
    border-radius: 5px;
    font-size: 18px;
    color: var(--light-gold);
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-info {
        gap: 15px;
        font-size: 11px;
    }

    .header-badge {
        font-size: 11px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }

    .logo-modern img {
        height: 50px;
    }

    .nav-modern ul {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        width: 100%;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }

    .hero-modern {
        padding: 80px 0 60px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .title-main {
        font-size: 24px;
    }

    .title-highlight {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .casino-card-horizontal {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo-wrapper {
        width: 100%;
        max-width: 250px;
    }

    .casino-info {
        width: 100%;
    }

    .casino-features-horizontal {
        grid-template-columns: 1fr;
    }

    .casino-action {
        width: 100%;
    }

    .btn-visit-horizontal {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .age-gate-content {
        padding: 30px;
        margin: 20px;
    }

    .age-gate-content h2 {
        font-size: 24px;
    }

    .content-page h1 {
        font-size: 32px;
    }
}
