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

body {
    font-family: 'Arial', sans-serif;
    background-color: #082b43;
    color: #87ceeb;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background-color: rgba(8, 43, 67, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo h2 {
    color: #87ceeb;
    font-size: 1.8rem;
    font-weight: bold;
}

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

.btn-secondary {
    background: transparent;
    color: #87ceeb;
    border: 2px solid #87ceeb;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #87ceeb;
    color: #082b43;
}

.btn-primary {
    background-color: #ffdc7c;
    color: #082b43;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffd54f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #082b43 0%, #0d3a56 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%23082b43"/><circle cx="300" cy="200" r="100" fill="%23164a6b" opacity="0.3"/><circle cx="800" cy="400" r="150" fill="%23164a6b" opacity="0.2"/><circle cx="1400" cy="300" r="80" fill="%23164a6b" opacity="0.4"/><circle cx="1600" cy="700" r="120" fill="%23164a6b" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 43, 67, 0.7);
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #87ceeb;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-cta {
    background-color: #ffdc7c;
    color: #082b43;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 220, 124, 0.3);
}

.btn-cta:hover {
    background-color: #ffd54f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 220, 124, 0.4);
}

/* Review Section */
.review-section {
    padding: 4rem 0;
    background-color: #082b43;
}

.review-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #87ceeb;
}

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

.feature-card {
    background: rgba(135, 206, 235, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(135, 206, 235, 0.15);
}

.feature-card h3 {
    color: #ffdc7c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #87ceeb;
    line-height: 1.6;
}

.bonus-highlights {
    background: rgba(255, 220, 124, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 220, 124, 0.3);
}

.bonus-highlights h3 {
    color: #ffdc7c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-highlights ul {
    list-style: none;
    padding-left: 0;
}

.bonus-highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    color: #87ceeb;
}

.bonus-highlights li:last-child {
    border-bottom: none;
}

.bonus-highlights strong {
    color: #ffdc7c;
}

.games-section {
    margin-bottom: 3rem;
}

.games-section h3 {
    color: #ffdc7c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.games-section p {
    color: #87ceeb;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 220, 124, 0.1), rgba(135, 206, 235, 0.1));
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 220, 124, 0.3);
}

.cta-section h3 {
    color: #ffdc7c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #87ceeb;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    background-color: #ffdc7c;
    color: #082b43;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 220, 124, 0.3);
}

.btn-cta-large:hover {
    background-color: #ffd54f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 220, 124, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}