/* style/beginner-guide-understanding-bonuses.css */
.page-beginner-guide-understanding-bonuses {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

.page-beginner-guide-understanding-bonuses .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-understanding-bonuses .hero-section {
    background: linear-gradient(135deg, #0A192F, #1a355e);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-understanding-bonuses .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-understanding-bonuses .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0; /* Slightly lighter text for subtitle */
}

.page-beginner-guide-understanding-bonuses .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-beginner-guide-understanding-bonuses .btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #0A192F; /* Dark blue text */
    font-size: 1.1em;
}

.page-beginner-guide-understanding-bonuses .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-beginner-guide-understanding-bonuses .btn-secondary {
    background-color: #FFD700;
    color: #0A192F;
    font-size: 1em;
    margin-right: 15px;
}

.page-beginner-guide-understanding-bonuses .btn-secondary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-beginner-guide-understanding-bonuses .btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1em;
}

.page-beginner-guide-understanding-bonuses .btn-outline:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-beginner-guide-understanding-bonuses .btn-info {
    background-color: #34495e;
    color: #f0f0f0;
    font-size: 1em;
    border: 1px solid #34495e;
}

.page-beginner-guide-understanding-bonuses .btn-info:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

.page-beginner-guide-understanding-bonuses section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-beginner-guide-understanding-bonuses section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide-understanding-bonuses .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-beginner-guide-understanding-bonuses .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    margin: 15px auto 0;
}

.page-beginner-guide-understanding-bonuses p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-beginner-guide-understanding-bonuses strong {
    color: #FFD700;
}

.page-beginner-guide-understanding-bonuses .content-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-understanding-bonuses .content-image-full-width {
    display: block;
    width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-understanding-bonuses .bonus-grid, .page-beginner-guide-understanding-bonuses .terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-beginner-guide-understanding-bonuses .bonus-item, .page-beginner-guide-understanding-bonuses .term-item {
    background-color: #1a355e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-beginner-guide-understanding-bonuses .bonus-item:hover, .page-beginner-guide-understanding-bonuses .term-item:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-understanding-bonuses .bonus-title, .page-beginner-guide-understanding-bonuses .term-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-beginner-guide-understanding-bonuses ul, .page-beginner-guide-understanding-bonuses ol {
    list-style-type: disc;
    margin-left: 25px;
    color: #e0e0e0;
}

.page-beginner-guide-understanding-bonuses ol {
    list-style-type: decimal;
}

.page-beginner-guide-understanding-bonuses ul li, .page-beginner-guide-understanding-bonuses ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-beginner-guide-understanding-bonuses .tips-list li strong {
    color: #FFD700;
}

.page-beginner-guide-understanding-bonuses .cta-group {
    text-align: center;
    margin-top: 40px;
}

.page-beginner-guide-understanding-bonuses .cta-group .btn {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-understanding-bonuses .hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide-understanding-bonuses .hero-subtitle {
        font-size: 1.2em;
    }
    .page-beginner-guide-understanding-bonuses .section-title {
        font-size: 2em;
    }
    .page-beginner-guide-understanding-bonuses .bonus-grid, .page-beginner-guide-understanding-bonuses .terms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-understanding-bonuses .hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-understanding-bonuses .hero-subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-understanding-bonuses section {
        padding: 40px 0;
    }
    .page-beginner-guide-understanding-bonuses .content-image {
        max-width: 95%;
    }
    .page-beginner-guide-understanding-bonuses .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-understanding-bonuses p {
        font-size: 1em;
    }
    .page-beginner-guide-understanding-bonuses ul li, .page-beginner-guide-understanding-bonuses ol li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-understanding-bonuses .hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-understanding-bonuses .hero-subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide-understanding-bonuses .section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-understanding-bonuses .cta-group .btn {
        display: block;
        margin: 10px auto;
    }
}