/* Bonus Page Styles */
body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #333;
}

header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff0000;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #ff0000;
}

/* Hero Section */
.bonus-hero {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 3rem 1rem;
}

.bonus-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    animation: fadeIn 1s ease-in;
    color: #ffffff;
}

.bonus-hero p {
    font-size: 1.2rem;
    margin: 1rem 0 0;
    animation: fadeIn 1.5s ease-in;
    color: #ffffff;
}

.bonus-grid {
    padding: 3rem 1rem;
    background: #ffffff;
}

.bonus-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.bonus-card h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
    color: #ff0000;
}

.bonus-card p {
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
    color: #333;
}

.btn {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #cc0000;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .bonus-hero h1 {
        font-size: 2rem;
    }
    .bonus-hero p {
        font-size: 1rem;
    }
    .bonus-grid .container {
        grid-template-columns: 1fr;
    }
}

/* How to Claim Section */
.how-to-claim {
    padding: 3rem 1rem;
    background: #ffffff;
}

.how-to-claim h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #ff0000;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.step-number {
    display: inline-block;
    background: #ff0000;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
}

.step p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Terms & Conditions Section */
.terms-conditions {
    padding: 4rem 2rem;
    background: #000000;
    color: #ffffff;
    margin: 2rem auto;
    max-width: 1200px;
}

.terms-conditions h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.terms-conditions p {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.terms-conditions .step {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.terms-conditions .step-icon {
    width: 50px;
    height: 50px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.terms-conditions .step-content h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.terms-conditions .step-content p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 3rem 1rem;
    background: #ffffff;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #ff0000;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    color: #ff0000;
}

.faq-item p {
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
    .how-to-claim h2, .terms-conditions h2, .faq h2 {
        font-size: 1.8rem;
    }
}

/* Blog Articles Section */
.blog-articles {
    padding: 3rem 1rem;
    background: #000000;
    color: #ffffff;
}

.blog-articles h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.article-card h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #ffffff;
}

.article-card p {
    color: #ffffff;
    margin: 0;
}

.read-more {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    margin-top: 1rem;
}

.read-more:hover {
    color: #ff0000;
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    .blog-articles h2 {
        font-size: 1.8rem;
    }
} 