/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #0d47a1;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: static;
    z-index: 100;
}

.header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
    display: flex;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
    text-align: left;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.main-nav a.active {
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Burger Menu - Mobile First */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.mobile-casino-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.mobile-casino-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
}

.mobile-casino-button {
    display: inline-block;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.article {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Article Meta Information */
.article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    align-items: flex-start;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.meta-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.meta-value {
    color: var(--text-color);
    font-size: 0.75rem;
}

.author-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.author-link:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Sections */
section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }

section h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--hover-color);
    transition: width 0.3s ease;
}

section:hover h2::after {
    width: 100px;
}

section p {
    margin-bottom: 1.2rem;
    text-align: justify;
    line-height: 1.8;
}

/* Casino Cards */
.casino-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.casino-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--hover-color);
}

.casino-card.top-casino {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 4px solid #ff9800;
    border: 2px solid #ff9800;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
    position: relative;
}

.casino-card.top-casino:hover {
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
    transform: translateY(-3px);
}

.top-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.5);
    z-index: 10;
}

.casino-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.casino-logo img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.casino-card:hover .casino-logo img {
    transform: scale(1.05);
}

.casino-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.casino-card.top-casino h3 {
    color: #f57c00;
}

.casino-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.casino-card p {
    margin-bottom: 0;
    text-align: center;
}

.casino-card strong {
    color: var(--accent-color);
    font-weight: 600;
}

.casino-link,
.top-card__btn.referral-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--hover-color) 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    font-family: inherit;
}

.casino-link:hover,
.top-card__btn.referral-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
    background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
}

.casino-card.top-casino .casino-link,
.casino-card.top-casino .top-card__btn.referral-btn {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
}

.casino-card.top-casino .casino-link:hover,
.casino-card.top-casino .top-card__btn.referral-btn:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
}

/* Process Steps */
.process-step {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.process-step:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* Withdrawal Info */
.withdrawal-info {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.withdrawal-info:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.withdrawal-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Quality Criteria */
.quality-criteria {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.quality-criteria:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.quality-criteria h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

/* Author Section */
.author-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.author-card {
    display: flex;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    align-items: flex-start;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    transition: var(--transition);
}

.author-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.author-info {
    flex: 1;
}

.author-info p {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 0 0.8rem;
    margin-top: 3rem;
    border-top: 2px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #64b5f6;
    border-bottom: 1px solid rgba(100, 181, 246, 0.3);
    padding-bottom: 0.3rem;
}

.footer-column p {
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.8rem;
    display: inline-block;
}

.footer-nav a:hover {
    color: #64b5f6;
    transform: translateX(3px);
    padding-left: 3px;
}

.footer-disclaimer {
    margin-top: 0.8rem;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border-left: 2px solid #ff9800;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-disclaimer strong {
    color: #ff9800;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.2rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.footer-meta {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll Animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile First - Tablet and Desktop */
@media (min-width: 481px) {
    .container {
        padding: 0 20px;
    }

    .article-meta {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .meta-label,
    .meta-value {
        font-size: 0.8rem;
    }

    .casino-logo img {
        max-width: 200px;
        max-height: 80px;
    }

    .casino-card h3 {
        font-size: 1.3rem;
    }

    .article {
        padding: 2rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .page-title-section {
        padding: 2.5rem 0;
    }
}

@media (min-width: 769px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .burger-menu {
        display: none;
    }

    .main-nav {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        gap: 1.5rem;
        box-shadow: none;
        overflow: visible;
    }

    .main-nav.active {
        right: auto;
    }

    .main-nav a {
        width: auto;
        padding: 0.5rem 1rem;
        margin-bottom: 0;
        text-align: center;
        font-size: 0.95rem;
    }

    .main-nav a:hover {
        transform: translateY(-2px);
    }

    .mobile-casino-button {
        display: none;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 3rem 0;
    }

    .article {
        padding: 2.5rem;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .article-meta {
        flex-wrap: nowrap;
        gap: 2rem;
        padding: 1.5rem;
    }

    .meta-label,
    .meta-value {
        font-size: 0.9rem;
    }

    .author-card {
        flex-direction: row;
        text-align: left;
    }

    .author-image {
        margin: 0;
    }

    .comparison-table {
        font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
    }

    .footer-column h3 {
        font-size: 0.95rem;
    }

    .footer {
        padding: 1.5rem 0 0.8rem;
    }

    .page-title-section {
        padding: 3rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-color);
    color: white;
}

