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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a2e;
}

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

.header {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo svg {
    height: 40px;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav a:hover {
    color: #4CAF50;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-outline {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #16213e;
}

.btn-primary {
    background: #2196F3;
    color: #fff;
}

.btn-primary:hover {
    background: #1976D2;
}

.btn-success {
    background: #4CAF50;
    color: #fff;
}

.btn-success:hover {
    background: #45a049;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 52, 96, 0.8) 100%);
}

.hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.welcome-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4CAF50;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.info-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 4rem 0;
}

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

.info-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-desc {
    color: #ccc;
}

.content-section {
    background: #fff;
    padding: 4rem 0;
}

.content-section .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.main-content {
    max-width: none;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #16213e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-content h2 {
    font-size: 2rem;
    color: #16213e;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #2196F3;
}

.main-content h3 {
    font-size: 1.5rem;
    color: #16213e;
    margin: 2rem 0 1rem 0;
}

.main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.table-container {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.info-table caption {
    font-size: 1.2rem;
    font-weight: bold;
    color: #16213e;
    margin-bottom: 1rem;
    text-align: left;
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.info-table th {
    background: #16213e;
    color: #fff;
    font-weight: bold;
}

.info-table tr:hover {
    background: #f5f5f5;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.author-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2196F3;
}

.author-details {
    margin-top: 1rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #16213e;
    margin-bottom: 0.5rem;
}

.author-title {
    color: #2196F3;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-bio {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.publish-date {
    font-size: 0.9rem;
    color: #888;
}

.quick-facts {
    background: #16213e;
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
}

.fact-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.bonus-highlight {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.bonus-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.bonus-spins {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.bonus-terms {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.footer {
    background: #16213e;
    color: #fff;
    padding: 3rem 0 1rem 0;
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-licenses {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.license-text,
.age-restriction {
    background: rgba(76, 175, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

.responsible-gaming {
    display: flex;
    gap: 1rem;
}

/* Layout fixes: align styles with actual HTML classes */
.nav-list {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

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

.nav-link:hover {
    color: #4CAF50;
}

.auth-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.65rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.btn-secondary {
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    color: #16213e;
    background: #fff;
}

.btn-primary {
    background: #2196F3;
    color: #fff;
}

.btn-primary:hover {
    background: #1976D2;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    border-radius: 3px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.hero-overlay {
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.hero-description {
    font-size: 1.05rem;
    max-width: 60ch;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-features {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #fff;
}

.feature-item + .feature-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-info {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 4rem 0;
}

.info-card,
.info-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-description,
.info-desc {
    color: #ccc;
}

.seo-content {
    max-width: 100%;
}

/* This page has no sidebar, keep article full-width */
.content-section .container {
    display: block;
    max-width: 980px;
}

.seo-content h1,
.main-content h1 {
    font-size: 2.5rem;
    color: #16213e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.seo-content h2,
.main-content h2 {
    font-size: 2rem;
    color: #16213e;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #2196F3;
}

.seo-content h3,
.main-content h3 {
    font-size: 1.5rem;
    color: #16213e;
    margin: 2rem 0 1rem;
}

.seo-content p,
.main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.info-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 620px;
}

.info-table caption {
    font-size: 1.2rem;
    font-weight: bold;
    color: #16213e;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-links {
    list-style: none;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    color: #ccc;
}

.gaming-logos {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #ccc;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .nav {
        display: none;
        width: 100%;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        background: rgba(15, 52, 96, 0.95);
        border-radius: 10px;
        padding: 0.75rem;
    }

    .auth-buttons {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .content-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .responsible-gaming {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .seo-content h1,
    .main-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2,
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item,
    .info-card {
        padding: 1.5rem;
    }
    
    .bonus-highlight {
        padding: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 1.5rem;
    }
}