/* style/promotions-welcome-bonus.css */

/* Base Styles for the Welcome Bonus Page */
.page-promotions-welcome-bonus {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark sections */
    background-color: #0A1931; /* Main background color */
    line-height: 1.6;
}

.page-promotions-welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero {
    background: linear-gradient(135deg, #0A1931 0%, #2a4163 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-welcome-bonus__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    margin: 10px;
}

.page-promotions-welcome-bonus__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__button--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}