:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #f1faee;
    --dark-color: #0a1128;
    --light-color: #f8f9fa;
    --success-color: #2a9d8f;
    --warning-color: #e9c46a;
    --error-color: #e76f51;
    --font-heading: 'Rubik Dirt', sans-serif;
    --font-body: 'Roboto Flex', sans-serif;
    --transition-speed: 0.3s;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.rbm_header-section {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.rbm_header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: url('../rbm-img/rbm-background-img-1.jpg') center/cover no-repeat;
    z-index: -1;
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
}

.rbm_header-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
    max-width: 1330px;
    margin: 0 auto;
}

.rbm_header-top {
    animation: fadeInDown 1s ease-out;
}

.rbm_header-responsibility {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 800px;
    i {
        font-size: 2rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    p {
        font-size: 0.9rem;
        color: var(--dark-color);
    }
}

.rbm_header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 1s ease-out;
}

.rbm_header-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-speed);
    &:hover {
        transform: scale(1.05);
    }
}

.rbm_header-ticket-btn {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    &:hover {
        background-color: var(--dark-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    &:active {
        transform: translateY(1px);
    }
}

.rbm_prize-section {
    position: relative;
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.rbm_prize-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../rbm-img/rbm-background-img-2.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.rbm_prize-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1330px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rbm_prize-info {
    flex: 1;
    width: 100%;
    min-width: 277px;
    max-width: 650px;
    h1 {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: var(--secondary-color);
    }
}

.rbm_prize-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rbm_prize-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    width: 100%;
    min-width: 200px;
    max-width: 650px;
    text-align: center;
    transition: transform var(--transition-speed);
    i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        display: block;
    }
    h3 {
        font-family: var(--font-heading);
        color: var(--secondary-color);
    }
    &:hover {
        transform: translateY(-10px);
    }
}

.rbm_prize-timer {
    flex: 1;
    width: 100%;
    min-width: 250px;
    max-width: 650px;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
}

.rbm_prize-amount {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    i {
        font-size: 2.5rem;
        color: var(--warning-color);
    }
    span {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--warning-color);
    }
}

.rbm_timer-container {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rbm_timer-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    span {
        font-size: 2.5rem;
        font-weight: bold;
        display: block;
        color: white;
    }
    small {
        font-size: 0.9rem;
        opacity: 0.8;
    }
}

.rbm_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    &.active {
        opacity: 1;
        visibility: visible;
    }
}

.rbm_modal-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(50px);
    transition: transform var(--transition-speed);
    .rbm_modal-overlay.active & {
        transform: translateY(0);
    }
}

.rbm_modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: color var(--transition-speed);
    &:hover {
        color: var(--primary-color);
    }
}

.rbm_registration-form {
    h2 {
        font-family: var(--font-heading);
        color: var(--secondary-color);
        margin-bottom: 1.5rem;
        text-align: center;
    }
}

.rbm_form-group {
    margin-bottom: 1.5rem;
    label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--secondary-color);
    }
    input, select {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-family: var(--font-body);
        transition: border-color var(--transition-speed);
        &:focus {
            border-color: var(--primary-color);
            outline: none;
        }
    }
}

.rbm_error-message {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
    min-height: 1rem;
}

.rbm_checkbox-group {
    margin-bottom: 1rem;
    position: relative;
    input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        &:checked + label .rbm_checkbox-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            &::after {
                opacity: 1;
            }
        }
    }
    label {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        a {
            color: var(--primary-color);
            text-decoration: none;
            &:hover {
                text-decoration: underline;
            }
        }
    }
}

.rbm_checkbox-custom {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all var(--transition-speed);
    &::after {
        content: '\2713';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        opacity: 0;
        transition: opacity var(--transition-speed);
    }
}

.rbm_submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    &:disabled {
        background-color: #1d1d1d;
        cursor: not-allowed;
    }
    &:not(:disabled):hover {
        background-color: #1d1d1d;
    }
}

.rbm_success-content {
    text-align: center;
    padding: 2rem;
    i {
        font-size: 4rem;
        color: var(--success-color);
        margin-bottom: 1.5rem;
        display: block;
    }
    h2 {
        font-family: var(--font-heading);
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
    p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
}

.rbm_success-close {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    &:hover {
        background-color: var(--dark-color);
        color: var(--primary-color);
    }
}

.rbm_footer-section {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 3rem 2rem;
}

.rbm_footer-content {
    max-width: 1330px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rbm_footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color var(--transition-speed);
        &:hover {
            color: var(--primary-color);
        }
    }
}

.rbm_footer-contact {
    text-align: center;
    p {
        margin-bottom: 0.5rem;
    }
    a {
        color: var(--accent-color);
        text-decoration: none;
        &:hover {
            text-decoration: underline;
        }
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .rbm_header-logo {
        font-size: 2.5rem;
    }
    .rbm_prize-info h1 {
        font-size: 3rem;
    }
    .rbm_prize-timer h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rbm_header-bg {
        height: 100%;
    }
    .rbm_header-content {
        padding: 2rem;
        gap: 1rem;
    }
    .rbm_header-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
    .rbm_header-responsibility {
        flex-direction: column;
        text-align: center;
    }
    .rbm_prize-content {
        flex-direction: column;
    }
    .rbm_prize-info h1 {
        font-size: 2.5rem;
    }
    .rbm_prize-card {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .rbm_header-logo {
        font-size: 2rem;
    }
    .rbm_header-ticket-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .rbm_prize-amount {
        span {
            font-size: 1.2rem;
        }
    }
    .rbm_prize-card {
        width: 85%;
    }
    .rbm_prize-section {
        padding: 3rem 1.5rem;
    }
    .rbm_timer-unit {
        min-width: 80px;
        span {
            font-size: 2rem;
        }
    }
    .rbm_modal-container {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .rbm_header-logo {
        font-size: 1.8rem;
    }
    .rbm_header-responsibility p {
        font-size: 0.8rem;
    }
    .rbm_prize-info h1 {
        font-size: 1.3rem;
    }
    .rbm_prize-info p {
        font-size: 1rem;
    }
    .rbm_prize-features {
        flex-direction: column;
    }
    .rbm_timer-unit {
        min-width: 70px;
        span {
            font-size: 1.8rem;
        }
    }
}

.rbm_about-play-section {
    max-width: 1330px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.rbm_about-container {
    background-color: var(--accent-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background-color: var(--primary-color);
        clip-path: circle(50% at 100% 0);
        opacity: 0.1;
    }
}

.rbm_about-content {
    position: relative;
    z-index: 1;
}

.rbm_about-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    
    &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }
}

.rbm_about-text {
    columns: 2;
    column-gap: 3rem;
    margin-bottom: 2rem;
    
    p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        line-height: 1.7;
        break-inside: avoid;
    }
}

.rbm_about-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    
    &:hover {
        background-color: var(--dark-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    }
    
    i {
        font-size: 1.3rem;
        transition: transform var(--transition-speed);
    }
    
    &:hover i {
        transform: translateX(3px);
    }
}

.rbm_play-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rbm_play-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    
    img {
        width: 100%;
        height:100%;
        max-height: 450px;
        display: block;
        transition: transform 0.5s ease;
        
        &:hover {
            transform: scale(1.03);
        }
    }
}

.rbm_play-steps {
    padding: 0 1rem;
}

.rbm_play-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    
    &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }
}

.rbm_play-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rbm_play-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--primary-color);
        transition: width var(--transition-speed);
    }
    
    &:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        
        &::before {
            width: 10px;
        }
    }
    
    i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        display: block;
    }
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--secondary-color);
    }
    
    p {
        margin-bottom: 1.5rem;
        color: var(--dark-color);
        opacity: 0.8;
        line-height: 1.6;
    }
}

.rbm_play-card-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
    
    &:hover {
        background-color: var(--primary-color);
        color: white;
        
        i {
            color: var(--accent-color);
            transform: translateX(3px);
        }
    }
    
    i {
        font-size: 1.2rem;
        transition: transform var(--transition-speed);
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .rbm_about-title {
        font-size: 2.5rem;
    }
    
    .rbm_play-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .rbm_about-text {
        columns: 1;
    }
    
    .rbm_about-container {
        padding: 2rem;
    }
    
    .rbm_play-card {
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .rbm_about-play-section {
        padding: 3rem 1.5rem;
    }
    
    .rbm_about-title {
        font-size: 2.2rem;
    }
    
    .rbm_play-title {
        font-size: 2rem;
    }
    
    .rbm_about-btn, .rbm_play-card-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .rbm_about-container {
        padding: 1.5rem;
    }
    
    .rbm_about-title {
        font-size: 2rem;
    }
    
    .rbm_play-card {
        padding: 1.5rem;
    }
}

.rbm_why-choose-section {
    max-width: 1330px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
        z-index: -1;
    }
}

.rbm_why-choose-wrapper {
    position: relative;
}

.rbm_why-choose-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    
    &::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
        border-radius: 3px;
    }
}

.rbm_why-choose-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.rbm_why-choose-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: calc(33.333% - 2rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-color) 0%, white 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity var(--transition-speed);
    }
    
    &:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        
        &::before {
            opacity: 1;
        }
        
        i {
            transform: scale(1.1) rotate(5deg);
            color: var(--primary-color);
        }
    }
    
    i {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 1.5rem;
        display: block;
        transition: all var(--transition-speed);
    }
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--secondary-color);
        position: relative;
        
        &::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
            transition: width var(--transition-speed);
        }
    }
    
    &:hover h3::after {
        width: 60px;
    }
    
    p {
        color: var(--dark-color);
        line-height: 1.7;
        font-size: 1.05rem;
    }
}

@media (max-width: 1024px) {
    .rbm_why-choose-card {
        width: calc(50% - 2rem);
    }
    
    .rbm_why-choose-title {
        font-size: 2.7rem;
    }
}

@media (max-width: 768px) {
    .rbm_why-choose-section {
        padding: 4rem 1.5rem;
    }
    
    .rbm_why-choose-title {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
    }
    
    .rbm_why-choose-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .rbm_why-choose-card {
        width: 100%;
        max-width: 400px;
    }
    
    .rbm_why-choose-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 320px) {
    .rbm_why-choose-section {
        padding: 3rem 1rem;
    }
    
    .rbm_why-choose-title {
        font-size: 2rem;
    }
    
    .rbm_why-choose-card {
        padding: 1.8rem 1.3rem;
        
        i {
            font-size: 2.8rem;
        }
        
        h3 {
            font-size: 1.4rem;
        }
        
        p {
            font-size: 1rem;
        }
    }
}

.rbm_journey-section {
    max-width: 1330px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-color);
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
        opacity: 0.1;
        z-index: 0;
    }
}

.rbm_journey-container {
    position: relative;
    z-index: 1;
}

.rbm_journey-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    
    &::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
        border-radius: 3px;
    }
}

.rbm_journey-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rbm_journey-text {
    max-width: 900px;
    margin-bottom: 3rem;
    
    p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        padding-left: 2.5rem;
        position: relative;
        color: var(--dark-color);
        
        i {
            position: absolute;
            left: 0;
            top: 0.3rem;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
    }
}

.rbm_journey-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-speed);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: 0.5s;
        z-index: -1;
    }
    
    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
        
        &::before {
            left: 100%;
        }
        
        i {
            transform: translateX(5px);
        }
    }
    
    i {
        font-size: 1.5rem;
        transition: transform var(--transition-speed);
    }
}

@media (max-width: 1024px) {
    .rbm_journey-section {
        padding: 5rem 2rem;
    }
    
    .rbm_journey-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .rbm_journey-section {
        padding: 4rem 1.5rem;
    }
    
    .rbm_journey-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .rbm_journey-text p {
        font-size: 1rem;
        padding-left: 2rem;
        
        i {
            font-size: 1.3rem;
        }
    }
    
    .rbm_journey-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .rbm_journey-title {
        font-size: 2.2rem;
    }
    
    .rbm_journey-text p {
        padding-left: 1.8rem;
    }
}

@media (max-width: 320px) {
    .rbm_journey-section {
        padding: 3rem 1rem;
    }
    
    .rbm_journey-title {
        font-size: 2rem;
    }
    
    .rbm_journey-btn {
        width: 100%;
        justify-content: center;
    }
}

.rbm_ticket-verify-section {
    max-width: 1330px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.rbm_ticket-verify-container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.rbm_ticket-verify-formblock {
    flex: 1;
    min-width: 350px;
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rbm_ticket-verify-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.rbm_ticket-verify-subtitle {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.rbm_form-group {
    margin-bottom: 1.5rem;
    
    label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--secondary-color);
    }
    
    input {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-family: var(--font-body);
        transition: all var(--transition-speed);
        
        &:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
        }
        
        &.error {
            border-color: var(--error-color);
        }
    }
}

.rbm_error-message {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
    min-height: 1rem;
}

.rbm_checkbox-group {
    margin: 2rem 0;
    
    input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        
        &:checked + label .rbm_checkbox-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            
            &::after {
                opacity: 1;
            }
        }
    }
    
    label {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        cursor: pointer;
        
        a {
            color: var(--primary-color);
            text-decoration: none;
            
            &:hover {
                text-decoration: underline;
            }
        }
    }
}

.rbm_checkbox-custom {
    width: 1.3rem;
    height: 1.3rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all var(--transition-speed);
    
    &::after {
        content: '\2713';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        opacity: 0;
        transition: opacity var(--transition-speed);
    }
}

.rbm_submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
        &:disabled {
            background-color: #1d1d1d;
            cursor: not-allowed;
    }
        &:not(:disabled):hover {
            background-color: #1d1d1d;
    }

}

.rbm_winning-numbers-block {
    flex: 1;
    min-width: 350px;
}

.rbm_winning-numbers-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.rbm_winning-numbers-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rbm_winning-number-set {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
    h4 {
        font-size: 1.1rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
}

.rbm_numbers-grid {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.rbm_number {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all var(--transition-speed);
    
    &.rbm_winner {
        background-color: var(--primary-color);
        color: white;
        transform: scale(1.1);
        box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
    }
}

.rbm_modal-overlay-tic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    
    &.active {
        opacity: 1;
        visibility: visible;
    }
}

.rbm_modal-container-tic {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: transform var(--transition-speed);
    
    .rbm_modal-overlay.active & {
        transform: translateY(0);
    }
}

.rbm_success-content-tic {
    text-align: center;
    padding: 1rem;
    
    i {
        font-size: 4rem;
        color: var(--success-color);
        margin-bottom: 1.5rem;
        display: block;
    }
    
    h3 {
        font-family: var(--font-heading);
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
    
    p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
}

.rbm_success-close-tic {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    
    &:hover {
        background-color: var(--dark-color);
        color: var(--primary-color);
    }
}

@media (max-width: 1024px) {
    .rbm_ticket-verify-title {
        font-size: 2.2rem;
    }
    
    .rbm_winning-numbers-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .rbm_ticket-verify-section {
        padding: 3rem 1.5rem;
    }
    
    .rbm_ticket-verify-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .rbm_ticket-verify-formblock,
    .rbm_winning-numbers-block {
        min-width: 100%;
    }
    
    .rbm_ticket-verify-title {
        font-size: 2rem;
    }
    
    .rbm_numbers-grid {
        gap: 0.5rem;
    }
    
    .rbm_number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .rbm_ticket-verify-section {
        padding: 2rem 1rem;
    }
    
    .rbm_ticket-verify-formblock {
        padding: 1.5rem;
    }
    
    .rbm_ticket-verify-title {
        font-size: 1.8rem;
    }
}

.rbm_faq-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.rbm_faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../rbm-img/rbm-background-img-3.jpg') center/cover no-repeat;
    z-index: -1;
    opacity: 0.15;
    
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(29, 53, 87, 0.8) 10%, rgba(230, 57, 70, 0.6) 20%);
    }
}

.rbm_faq-container {
    max-width: 1330px;
    margin: 0 auto;
}

.rbm_faq-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    
    &::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 4px;
        background-color: var(--warning-color);
        border-radius: 2px;
    }
}

.rbm_faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.rbm_faq-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
    
    &:last-child {
        margin-bottom: 0;
    }
    
    &:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

.rbm_faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    
    i:first-child {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    h3 {
        font-size: 1.3rem;
        color: var(--secondary-color);
        margin-right: auto;
    }
    
    .rbm_faq-icon {
        font-size: 1.5rem;
        color: var(--secondary-color);
        transition: transform var(--transition-speed);
    }
    
    &.active .rbm_faq-icon {
        transform: rotate(180deg);
        color: var(--primary-color);
    }
}

.rbm_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed);
    padding: 0 2rem;
    
    p {
        padding: 0 0 1.5rem 3.3rem;
        color: var(--dark-color);
        line-height: 1.7;
    }
    
    &.active {
        max-height: 300px;
    }
}

@media (max-width: 1024px) {
    .rbm_faq-title {
        font-size: 2.8rem;
    }
    
    .rbm_faq-question {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .rbm_faq-section {
        padding: 4rem 1.5rem;
    }
    
    .rbm_faq-title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
    
    .rbm_faq-question h3 {
        font-size: 1.2rem;
    }
    
    .rbm_faq-answer p {
        padding-left: 2.8rem;
    }
}

@media (max-width: 480px) {
    .rbm_faq-title {
        font-size: 2rem;
    }
    
    .rbm_faq-question {
        padding: 1rem;
        
        i:first-child {
            margin-right: 1rem;
            font-size: 1.5rem;
        }
    }
    
    .rbm_faq-answer p {
        padding-left: 2.5rem;
    }
}

@media (max-width: 320px) {
    .rbm_faq-section {
        padding: 3rem 1rem;
    }
    
    .rbm_faq-question h3 {
        font-size: 1.1rem;
    }
    
    .rbm_faq-answer p {
        padding-left: 2.2rem;
        font-size: 0.95rem;
    }
}

.rbm_responsible-section {
    max-width: 1330px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 70% 30%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
        z-index: 0;
    }
}

.rbm_responsible-container {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.rbm_responsible-content {
    flex: 2;
}

.rbm_responsible-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    
    &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 120px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }
}

.rbm_responsible-text {
    p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: var(--dark-color);
        position: relative;
        padding-left: 3rem;
        
        i {
            position: absolute;
            left: 0;
            top: 0.3rem;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
    }
}

.rbm_responsible-partners {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.rbm_partner-item {
    width: 100%;
    max-width: 220px;
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed);
    
    &:hover {
        transform: translateY(-5px);
    }
    
    a {
        display: block;
        text-decoration: none;
    }
    
    img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }
}

.rbm_age-restriction {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
}

@media (max-width: 1024px) {
    .rbm_responsible-container {
        flex-direction: column;
    }
    
    .rbm_responsible-partners {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .rbm_partner-item {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .rbm_responsible-section {
        padding: 4rem 1.5rem;
    }
    
    .rbm_responsible-title {
        font-size: 2.4rem;
    }
    
    .rbm_responsible-text p {
        font-size: 1rem;
        padding-left: 2.5rem;
        
        i {
            font-size: 1.5rem;
        }
    }
}

@media (max-width: 480px) {
    .rbm_responsible-title {
        font-size: 2rem;
    }
    
    .rbm_partner-item {
        max-width: 150px;
        padding: 1rem;
    }
    
    .rbm_age-restriction {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .rbm_responsible-section {
        padding: 3rem 1rem;
    }
    
    .rbm_responsible-text p {
        padding-left: 2rem;
        
        i {
            font-size: 1.3rem;
        }
    }
    
    .rbm_partner-item {
        max-width: 130px;
    }
}

.rbm_age-verify-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 17, 40, 0.99);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.rbm_age-verify-container {
  max-width: 500px;
  width: 90%;
  background-color: var(--dark-color);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rbm_age-verify-content {
  text-align: center;
  color: var(--accent-color);
}

.rbm_age-icon {
  font-size: 3.5rem;
  color: var(--warning-color);
  margin-bottom: 1.5rem;
}

.rbm_age-verify-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--warning-color);
}

.rbm_age-verify-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rbm_age-verify-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.rbm_age-confirm, .rbm_age-decline {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.rbm_age-confirm {
  background-color: var(--success-color);
  color: white;
  
  &:hover {
    background-color: darken(var(--success-color), 10%);
    transform: translateY(-3px);
  }
}

.rbm_age-decline {
  background-color: var(--error-color);
  color: white;
  
  &:hover {
    background-color: darken(var(--error-color), 10%);
    transform: translateY(-3px);
  }
}

.rbm_cookies-consent-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  z-index: 9998;
  padding: 1rem 0;
}

.rbm_cookies-consent-container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 2rem;
}

.rbm_cookies-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.rbm_cookies-textblock {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.rbm_cookies-icon {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.rbm_cookies-text {
  color: var(--accent-color);
  font-size: 1rem;
  line-height: 1.6;
  
  a {
    color: var(--warning-color);
    text-decoration: none;
    
    &:hover {
      text-decoration: underline;
    }
  }
}

.rbm_cookies-accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
  white-space: nowrap;
  
  &:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
  }
}

.rbm_scroll-top {
  position: fixed;
  right: 2rem;
  bottom: 315px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  
  &.active {
    opacity: 1;
    visibility: visible;
  }
  
  i {
    font-size: 1.8rem;
    color: white;
  }
  
  &:hover {
    background-color: darken(var(--primary-color), 10%);
    color: var(--primary-color);
    transform: translateY(-3px);
  }

    &:hover i {
    color: var(--primary-color);
  }
}

@media (max-width: 768px) {
  .rbm_cookies-consent-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .rbm_cookies-textblock {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .rbm_age-verify-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .rbm_scroll-top {
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .rbm_age-verify-container {
    padding: 1.5rem;
  }
  
  .rbm_age-verify-title {
    font-size: 1.8rem;
  }
  
  .rbm_age-verify-text {
    font-size: 1rem;
  }
  
  .rbm_scroll-top {
    width: 40px;
    height: 40px;
    
    i {
      font-size: 1.5rem;
    }
  }
}

.rbmpage_privacy-main {
  max-width: 1330px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.rbmpage_privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rbmpage_privacy-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--secondary-color);
  position: relative;
  
  &::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: var(--primary-color);
  }
}

.rbmpage_privacy-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.rbmpage_privacy-item {
  flex: 1 1 300px;
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed);
  
  &:hover {
    transform: translateY(-5px);
  }
  
  i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
  }
  
  h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  p {
    color: var(--dark-color);
    line-height: 1.7;
  }
}

@media (max-width: 1024px) {
  .rbmpage_privacy-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .rbmpage_privacy-main {
    padding: 2rem 1.5rem;
  }
  
  .rbmpage_privacy-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .rbmpage_privacy-title {
    font-size: 2rem;
  }
  
  .rbmpage_privacy-item {
    flex: 1 1 100%;
  }
}

.rbmpage_cookie-main {
  max-width: 1330px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.rbmpage_cookie-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rbmpage_cookie-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--secondary-color);
  position: relative;
  
  &::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: var(--warning-color);
  }
}

.rbmpage_cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.rbmpage_cookie-item {
  flex: 1 1 300px;
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all var(--transition-speed);
  
  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  
  i {
    font-size: 2.5rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
    display: block;
  }
  
  h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  p {
    color: var(--dark-color);
    line-height: 1.7;
  }
}

@media (max-width: 1024px) {
  .rbmpage_cookie-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .rbmpage_cookie-main {
    padding: 2rem 1.5rem;
  }
  
  .rbmpage_cookie-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .rbmpage_cookie-title {
    font-size: 2rem;
  }
  
  .rbmpage_cookie-item {
    flex: 1 1 100%;
  }
}

.rbmpage_responsible-main {
  max-width: 1330px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.rbmpage_responsible-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rbmpage_responsible-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--secondary-color);
  position: relative;
  
  &::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: var(--success-color);
  }
}

.rbmpage_responsible-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.rbmpage_responsible-item {
  flex: 1 1 300px;
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all var(--transition-speed);
  
  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  
  i {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    display: block;
  }
  
  h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  p {
    color: var(--dark-color);
    line-height: 1.7;
    
    a {
      color: var(--primary-color);
      text-decoration: none;
      
      &:hover {
        text-decoration: underline;
      }
    }
  }
}

@media (max-width: 1024px) {
  .rbmpage_responsible-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .rbmpage_responsible-main {
    padding: 2rem 1.5rem;
  }
  
  .rbmpage_responsible-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .rbmpage_responsible-title {
    font-size: 2rem;
  }
  
  .rbmpage_responsible-item {
    flex: 1 1 100%;
  }
}

.rbmpage_contact-main {
  max-width: 1330px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.rbmpage_contact-header {
  margin-bottom: 3rem;
  text-align: center;
}

.rbmpage_contact-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  position: relative;
  
  &::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
  }
}

.rbmpage_contact-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-color);
}

.rbmpage_contact-formsection {
  max-width: 600px;
  margin: 0 auto;
}

.rbmpage_contact-form {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rbmpage_form-group {
  margin-bottom: 1.5rem;
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  input, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: border-color var(--transition-speed);
    
    &:focus {
      border-color: var(--primary-color);
      outline: none;
    }
  }
  
  textarea {
    resize: vertical;
  }
}

.rbmpage_error-message {
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: block;
  min-height: 1rem;
}

.rbmpage_checkbox-group {
  margin: 2rem 0;
  
  input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    
    &:checked + label .rbmpage_checkbox-custom {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      
      &::after {
        opacity: 1;
      }
    }
  }
  
  label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    
    a {
      color: var(--primary-color);
      text-decoration: none;
      
      &:hover {
        text-decoration: underline;
      }
    }
  }
}

.rbmpage_checkbox-custom {
  width: 1.3rem;
  height: 1.3rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all var(--transition-speed);
  
  &::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0;
    transition: opacity var(--transition-speed);
  }
}

.rbmpage_submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color var(--transition-speed);
  
  &:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  &:not(:disabled):hover {
    background-color: var(--dark-color);
  }
}

.rbmpage_modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
  
  &.active {
    opacity: 1;
    visibility: visible;
  }
}

.rbmpage_modal-container {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.rbmpage_modal-content {
  i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
  }
  
  h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
}

@media (max-width: 1024px) {
  .rbmpage_contact-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .rbmpage_contact-main {
    padding: 2rem 1.5rem;
  }
  
  .rbmpage_contact-title {
    font-size: 2.2rem;
  }
  
  .rbmpage_contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .rbmpage_contact-title {
    font-size: 2rem;
  }
  
  .rbmpage_contact-description {
    font-size: 1rem;
  }
}