@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
:root {
    --primary: #1a1f2e;
    --secondary: #252b3d;
    --accent: #f7931a;
    --accent-hover: #ffab3d;
    --accent-green: #00d68f;
    --text: #e4e6eb;
    --text-muted: #9ca3af;
    --border: #363d52;
    --card-bg: #1e2433;
    --gradient-1: linear-gradient(135deg, #f7931a 0%, #ffab3d 100%);
    --gradient-2: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --radius: 16px;
    --radius-sm: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.7;
    min-width: 280px;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--accent-hover);
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}
.logo-text span {
    color: var(--accent);
}
nav {
    display: flex;
    align-items: center;
}
.nav-toggle {
    display: none;
    background: var(--accent);
    border: none;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--primary);
    font-weight: 600;
}
.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}
.nav-menu a {
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.nav-menu a:hover {
    background: var(--accent);
    color: var(--primary);
}
.hero {
    padding: 60px 0;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247,147,26,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--text);
}
.hero h1 span {
    color: var(--accent);
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--gradient-1);
    color: var(--primary);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247,147,26,0.3);
    color: var(--primary);
}
.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
}
section {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 15px;
}
.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.casino-grid {
    display: grid;
    gap: 30px;
}
.casino-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}
.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.casino-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--secondary);
    flex-wrap: wrap;
}
.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--primary);
}
.casino-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.casino-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
}
.casino-body {
    padding: 25px;
}
.casino-bonus {
    background: rgba(247,147,26,0.1);
    border: 1px solid rgba(247,147,26,0.3);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.casino-bonus .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.casino-bonus .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}
.casino-features {
    list-style: none;
    margin-bottom: 20px;
}
.casino-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}
.casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}
.casino-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.casino-actions .btn {
    flex: 1;
    justify-content: center;
    min-width: 140px;
}
.content-section {
    background: var(--secondary);
}
.content-block {
    margin-bottom: 40px;
}
.content-block h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.content-block h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--accent);
}
.content-block p {
    margin-bottom: 15px;
    color: var(--text-muted);
}
.content-block ul, .content-block ol {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--text-muted);
}
.content-block li {
    margin-bottom: 10px;
}
.responsive-table {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}
th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
th {
    background: var(--primary);
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}
tr:hover {
    background: rgba(247,147,26,0.05);
}
.chart-container {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 25px;
    margin: 25px 0;
}
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.bar-label {
    min-width: 120px;
    font-size: 0.9rem;
}
.bar-track {
    flex: 1;
    height: 30px;
    background: var(--primary);
    border-radius: 15px;
    overflow: hidden;
    min-width: 150px;
}
.bar-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: width 0.5s ease;
}
.faq-section {
    margin: 40px 0;
}
.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: inherit;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}
.faq-item.active .faq-question::after {
    content: '−';
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}
.faq-answer p {
    color: var(--text-muted);
}
.related-articles {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
}
.related-articles h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}
.related-link {
    display: block;
    padding: 15px;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.related-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.author-box {
    display: flex;
    gap: 25px;
    align-items: center;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent);
}
.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.author-info p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.author-full {
    max-width: 800px;
    margin: 0 auto;
}
.author-full .author-avatar {
    width: 150px;
    height: 150px;
}
.author-full .author-bio {
    margin-top: 30px;
}
.author-full .author-bio p {
    margin-bottom: 15px;
    color: var(--text-muted);
}
.contact-form {
    max-width: 600px;
    margin: 40px auto;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-info {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 40px;
}
.contact-info p {
    margin-bottom: 15px;
    color: var(--text-muted);
}
.contact-info strong {
    color: var(--text);
}
footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(247,147,26,0.3);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    transform: translateY(-5px);
}
.scroll-top svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--text-muted);
}
.breadcrumb span {
    color: var(--text-muted);
    margin: 0 10px;
}
.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}
.pros, .cons {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.pros h4, .cons h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pros h4 {
    color: var(--accent-green);
}
.cons h4 {
    color: #ef4444;
}
.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}
.pros li, .cons li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}
.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}
.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
}
.info-box {
    background: rgba(247,147,26,0.1);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 25px 0;
}
.info-box p {
    color: var(--text);
    margin: 0;
}
.page-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}
.page-404 h1 {
    font-size: 6rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.page-404 p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border);
        gap: 5px;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        width: 100%;
        padding: 12px 16px;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    section {
        padding: 40px 0;
    }
    .hero {
        padding: 40px 0;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .casino-header {
        justify-content: center;
        text-align: center;
    }
    .casino-actions {
        flex-direction: column;
    }
    .casino-actions .btn {
        width: 100%;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    th, td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .footer-content {
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
}
@media (max-width: 350px) {
    body {
        font-size: 14px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .casino-logo {
        width: 60px;
        height: 60px;
    }
}
.error-page {
    padding: 80px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.error-content h1 {
    font-size: clamp(80px, 20vw, 180px);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}
.error-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}
.error-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}
.error-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.popular-pages {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
}
.popular-pages h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.popular-pages ul {
    list-style: none;
}
.popular-pages li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.popular-pages li:last-child {
    border-bottom: none;
}
.popular-pages a {
    color: var(--accent);
    transition: color 0.2s;
}
.popular-pages a:hover {
    color: var(--green);
}
