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

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a4a 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.nav-menu a:hover {
    color: #d4af37;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a4d3a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #1a4d3a;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.8) 0%, rgba(45, 90, 74, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-bonus {
    margin-bottom: 2rem;
}

.bonus-amount {
    font-size: 4rem;
    font-weight: bold;
    color: #d4af37;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-details {
    font-size: 1.2rem;
    color: white;
    display: block;
}

.btn-hero {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a4d3a;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2d5a4a 0%, #1a4d3a 100%);
    padding: 4rem 0;
}

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

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a4d3a;
    margin: 1rem 0;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    background: white;
    padding: 5rem 0;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h1 {
    font-size: 2.5rem;
    color: #1a4d3a;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-content h2 {
    font-size: 2rem;
    color: #1a4d3a;
    margin: 3rem 0 1.5rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
}

.seo-content h3 {
    font-size: 1.5rem;
    color: #2d5a4a;
    margin: 2rem 0 1rem;
}

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

/* Table Styles */
.comparison-table,
.games-table,
.banking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.games-table th,
.banking-table th {
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a4a 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

.comparison-table td,
.games-table td,
.banking-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:hover,
.games-table tbody tr:hover,
.banking-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Author Bio */
.author-bio {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #d4af37;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    color: #1a4d3a;
    font-size: 1.1rem;
}

.author-title {
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a4a 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a4d3a;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background: #0a1a0a;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-title {
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a:hover {
    color: #d4af37;
}

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

.footer-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: #d4af37;
    color: #1a4d3a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .bonus-amount {
        font-size: 3rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table,
    .games-table,
    .banking-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .games-table th,
    .banking-table th,
    .comparison-table td,
    .games-table td,
    .banking-table td {
        padding: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .comparison-table,
    .games-table,
    .banking-table {
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}