/* style/resources-choosing-betting-platform.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-login-color: #C30808;
    --register-login-font-color: #FFFF00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --padding-mobile: 15px;
}

.page-resources-choosing-betting-platform {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color); /* Matches body background if shared is white */
}

.page-resources-choosing-betting-platform__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding-top: var(--header-offset, 120px); /* Adjust based on shared header height */
    background-color: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
}

.page-resources-choosing-betting-platform__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.page-resources-choosing-betting-platform__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--register-login-font-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-choosing-betting-platform__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-choosing-betting-platform__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-choosing-betting-platform__btn-primary,
.page-resources-choosing-betting-platform__btn-secondary {
    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, color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}