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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #001a4d 0%, #0047ab 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

nav a:hover {
    color: #ffd700;
}

.cta-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #001a4d;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #002d5a 0%, #0066cc 100%), url('images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #ffd700;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #001a4d;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.3em;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #001a4d;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: justify;
    line-height: 1.8;
}

.about-content strong {
    color: #0047ab;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: #0047ab;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Games Section */
.games {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.games h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #001a4d;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1em;
    color: #555;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 20px 20px 10px;
    color: #001a4d;
    font-size: 1.5em;
}

.game-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.game-link {
    display: block;
    background: linear-gradient(135deg, #0047ab 0%, #6a00b0 100%);
    color: #fff;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.game-link:hover {
    background: linear-gradient(135deg, #6a00b0 0%, #8a00d0 100%);
}

/* Bonus Section */
.bonus {
    padding: 80px 20px;
    background: #fff;
}

.bonus h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #001a4d;
}

.bonus-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1em;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.bonus-card.featured {
    background: linear-gradient(135deg, #0047ab 0%, #6a00b0 100%);
    color: #fff;
    transform: scale(1.05);
}

.bonus-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.bonus-card.featured h3 {
    color: #ffd700;
}

.bonus-amount {
    font-size: 2em;
    font-weight: bold;
    color: #ffd700;
    margin: 20px 0;
}

.bonus-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.bonus-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.bonus-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.bonus-btn {
    display: inline-block;
    background: #ffd700;
    color: #001a4d;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s;
}

.bonus-btn:hover {
    transform: scale(1.05);
}

.terms {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.terms h4 {
    color: #001a4d;
    margin-bottom: 15px;
}

.terms p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

/* Payments Section */
.payments {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.payments h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #001a4d;
}

.payment-img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.payment-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-method {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.payment-method h3 {
    color: #0047ab;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background: #fff;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #001a4d;
}

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

.review-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rating {
    color: #ffd700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.reviewer {
    font-weight: bold;
    color: #0047ab;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #001a4d;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #0047ab;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #001a4d 0%, #0047ab 100%);
    color: #fff;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.cta-btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #001a4d;
    padding: 20px 60px;
    text-decoration: none;
    border-radius: 35px;
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.disclaimer {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #001a4d;
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3em;
}

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

.footer-section ul li {
    padding: 8px 0;
}

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

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

.license-badge {
    width: 150px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #0047ab;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 10px 0;
    opacity: 0.8;
}

.payment-icons {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    nav {
        display: none;
    }
    
    header .container {
        justify-content: space-between;
    }
    
    .game-grid,
    .features,
    .bonus-cards,
    .payment-methods,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card.featured {
        transform: scale(1);
    }
}

/* Game Detail Page */
.game-detail {
    padding: 80px 20px;
    background: #fff;
}

.game-detail h1 {
    font-size: 2.5em;
    color: #001a4d;
    margin-bottom: 30px;
    text-align: center;
}

.game-detail-img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.game-description {
    max-width: 900px;
    margin: 0 auto 40px;
}

.game-description p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

.game-description h2 {
    color: #0047ab;
    margin: 40px 0 20px;
    font-size: 1.8em;
}

.game-description ul {
    margin: 20px 0;
    padding-left: 40px;
}

.game-description ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
}

.game-detail .hero-btn {
    display: block;
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
}
