* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    color: #ffffff;
    background: linear-gradient(110deg, #ccb6b6, #000000, #000000);
    line-height: 1.6;
}

.rca_header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.rca_warning__banner {
    background-color: rgba(255, 82, 151, 0.9);
    padding: 10px 0;
    text-align: center;
}

.rca_warning__content {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

.rca_warning__content p {
    font-size: 14px;
    font-weight: bold;
}

.rca_warning__close {
    cursor: pointer;
    font-size: 18px;
}

.rca_header__main {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.rca_header__container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.rca_header__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.rca-header__btn {
    background: linear-gradient(90deg, #ccb6b6, #000000);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-family: 'Pirata One', cursive;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.rca-header__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.rca_header__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Pirata One', cursive;
    font-size: 24px;
}

.rca_header__logo img {
    border-radius: 50%;
    object-fit: cover;
}

.rca_nav {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rca_nav__container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.rca_nav__list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.rca_nav__list a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Pirata One', cursive;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.rca_nav__list a:hover {
    color: #ccb6b6;
}

.rca_burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.rca_burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.rca_modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    padding: 40px;
    overflow-y: auto;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.rca_modal.active {
    right: 0;
}

.rca_modal__content {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.rca_modal__close {
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rca_modal__close:hover {
    transform: rotate(-110deg);
}

.rca_form__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rca_form__logo img {
    border-radius: 50%;
}

.rca_form__logo span {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #ffffff;
}

.rca_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rca_form__group {
    position: relative;
}

.rca_form__input {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: 'Merriweather', serif;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.rca_form__input:focus {
    outline: none;
    border-color: #ccb6b6;
    box-shadow: 0 0 10px rgba(204, 182, 182, 0.3);
}

.rca_form__error {
    color: #ff5297;
    font-size: 14px;
    margin-bottom: 5px;
    min-height: 20px;
    display: none;
}

.rca_password__toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.rca_password__toggle:hover {
    color: #ffffff;
}

.rca_form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.rca_checkbox__group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rca_form__checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.rca_form__checkbox:checked {
    background-color: #02cf4a;
    border-color: #02cf4a;
}

.rca_form__checkbox:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.rca_checkbox__group label {
    font-size: 14px;
    cursor: pointer;
}

.rca_checkbox__group a {
    color: #2760d3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rca_checkbox__group a:hover {
    text-decoration: underline;
}

.rca_form__submit {
    background: linear-gradient(90deg, #ccb6b6, #000000);
    color: #ffffff;
    border: none;
    padding: 15px;
    font-family: 'Pirata One', cursive;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    opacity: 0.5;
    pointer-events: none;
}

.rca_form__submit.active {
    opacity: 1;
    pointer-events: auto;
}

.rca_form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rca_form__forgot {
    text-align: right;
    margin-top: -15px;
}

.rca_form__forgot a {
    color: #2760d3;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rca_form__forgot a:hover {
    text-decoration: underline;
}

.rca_form__footer {
    text-align: center;
    margin-top: 10px;
}

.rca_form__footer p {
    font-size: 14px;
}

.rca_form__footer a {
    color: #2760d3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rca_form__footer a:hover {
    text-decoration: underline;
}

.rca_success__modal .rca_modal__content {
    text-align: center;
    padding: 40px;
}

.rca_success__icon {
    font-size: 60px;
    color: #02cf4a;
    margin-bottom: 20px;
}

.rca_success__title {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.rca_success__text {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.rca_success__email {
    color: #ffffff;
    font-weight: bold;
}

.rca_success__close {
    background: linear-gradient(90deg, #ccb6b6, #000000);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-family: 'Pirata One', cursive;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.rca_success__close:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1280px) {
    .rca_modal {
        width: 60%;
    }
}

@media (max-width: 1024px) {
    .rca_modal {
        width: 70%;
    }
    
    .rca_header__actions {
        gap: 30px;
    }
    
    .rca-header__btn {
        padding: 10px 25px;
        font-size: 16px;
    }
    
    .rca_nav__list {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .rca_modal {
        width: 80%;
    }
    
    .rca_nav__list {
        flex-wrap: wrap;
        display: none;
    }

    .rca_nav__list.active {
        display: flex;
    }
    
    .rca_burger {
        display: flex;
    }
    
    .rca_header__logo span {
        display: none;
    }
    
    .rca_header__actions {
        gap: 20px;
    }
    
    .rca-header__btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .rca_modal {
        width: 90%;
        padding: 30px 20px;
    }
    
    .rca_modal__close {
        top: -25px;
        left: -25px;
    }
    
    .rca_form__logo {
        margin-bottom: 20px;
    }
    
    .rca_form__logo span {
        font-size: 24px;
    }
    
    .rca_header__actions {
        gap: 15px;
    }
    
    .rca-header__btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .rca_modal {
        width: 100%;
        padding: 25px 15px;
    }
    
    .rca_form__input {
        padding: 12px 15px;
    }
    
    .rca_form__submit {
        padding: 12px;
    }
}

.rca_timer__container {
    width: 100%;
    background-color: #000000;
    padding: 80px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rca_timer__content-wrapper {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.rca_timer__text-section {
    flex: 1 1 50%;
    min-width: 300px;
}

.rca_timer__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    animation: skewUp 1s ease forwards;
}

.rca_timer__description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.rca_timer__countdown-section {
    flex: 1 1 40%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: floatIn 1.5s ease forwards;
}

.rca_timer__countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rca_timer__unit {
    text-align: center;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.rca_timer__unit:hover {
    transform: scale(1.1) rotate(-2deg);
}

.rca_timer__value {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    animation: pulse 2s infinite;
}

.rca_timer__label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rca_timer__cta-button {
    background: #ff5297;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 82, 151, 0.4);
}

.rca_timer__cta-button:hover {
    background: #e03d7a;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 82, 151, 0.6);
}

@keyframes skewUp {
    0% {
        transform: skewY(10deg) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: skewY(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes floatIn {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 1280px) {
    .rca_timer__title {
        font-size: 2.5rem;
    }

    .rca_timer__value {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .rca_timer__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .rca_timer__countdown-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .rca_timer__title {
        font-size: 2rem;
    }

    .rca_timer__description {
        font-size: 1rem;
    }

    .rca_timer__countdown {
        gap: 20px;
    }

    .rca_timer__unit {
        padding: 15px 20px;
        flex: 1 1 45%;
    }

    .rca_timer__cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rca_timer__title {
        font-size: 1.8rem;
    }

    .rca_timer__value {
        font-size: 2rem;
    }

    .rca_timer__unit {
        flex: 1 1 100%;
    }
}

.rca_about__container {
    width: 100%;
    background-color: #000000;
    padding: 80px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rca_about__content-wrapper {
    max-width: 1480px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.rca_about__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    margin-bottom: 40px;
    animation: skewUp 1s ease forwards;
}

.rca_about__blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.rca_about__block {
    flex: 1 1 45%;
    min-width: 300px;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.rca_about__block:hover {
    transform: scale(1.03) rotate(-1deg);
}

.rca_about__description p,
.rca_about__warning p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.rca_about__warning-icon {
    font-size: 2rem;
    color: #ff5297;
    margin-bottom: 15px;
    display: block;
    animation: pulseIcon 2s infinite;
}

@keyframes skewUp {
    0% {
        transform: skewY(10deg) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: skewY(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .rca_about__blocks {
        flex-direction: column;
        align-items: center;
    }

    .rca_about__block {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .rca_about__title {
        font-size: 2.2rem;
    }

    .rca_about__block {
        padding: 25px;
    }

    .rca_about__description p,
    .rca_about__warning p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rca_about__title {
        font-size: 1.8rem;
    }

    .rca_about__block {
        padding: 20px;
    }

    .rca_about__description p,
    .rca_about__warning p {
        font-size: 0.95rem;
    }
}

.rca_experience__container {
    width: 100%;
    background-color: #000000;
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
}

.rca_experience__content-wrapper {
    max-width: 1480px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
}

.rca_experience__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
}

.rca_experience__subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.rca_experience__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.rca_experience__card {
    flex: 1 1 calc(25% - 22.5px);
    min-width: 280px;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.rca_experience__card:hover {
    transform: scale(1.03) rotate(-1deg);
}

.rca_experience__icon {
    font-size: 2.5rem;
    color: #ff5297;
    margin-bottom: 20px;
    display: block;
    animation: pulseIcon 2s infinite;
}

.rca_experience__card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rca_experience__card-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .rca_experience__card {
        flex: 1 1 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .rca_experience__card {
        flex: 1 1 calc(50% - 15px);
    }

    .rca_experience__title {
        font-size: 2.2rem;
    }

    .rca_experience__subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .rca_experience__card {
        flex: 1 1 100%;
    }

    .rca_experience__title {
        font-size: 1.8rem;
    }

    .rca_experience__subtitle {
        font-size: 1rem;
    }
}

.rca_howto__container {
    width: 100%;
    background-color: #000000;
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
}

.rca_howto__content-wrapper {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rca_howto__image-block {
    flex: 1 1 50%;
    min-width: 300px;
}

.rca_howto__image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.rca_howto__text-block {
    flex: 1 1 45%;
    min-width: 300px;
}

.rca_howto__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
}

.rca_howto__subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.rca_howto__steps {
    list-style: none;
    padding: 0;
}

.rca_howto__step {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rca_howto__step:nth-child(1) {
    animation: fadeInSlide 0.8s ease forwards;
}
.rca_howto__step:nth-child(2) {
    animation: fadeInSlide 0.8s ease 0.2s forwards;
}
.rca_howto__step:nth-child(3) {
    animation: fadeInSlide 0.8s ease 0.4s forwards;
}
.rca_howto__step:nth-child(4) {
    animation: fadeInSlide 0.8s ease 0.6s forwards;
}

.rca_howto__icon {
    font-size: 1.8rem;
    color: #ff5297;
    flex-shrink: 0;
    margin-top: 4px;
}

.rca_howto__step strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .rca_howto__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .rca_howto__image-block,
    .rca_howto__text-block {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .rca_howto__title {
        font-size: 2.2rem;
    }

    .rca_howto__subtitle {
        font-size: 1.1rem;
    }

    .rca_howto__step strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rca_howto__title {
        font-size: 1.8rem;
    }

    .rca_howto__subtitle {
        font-size: 1rem;
    }

    .rca_howto__step {
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .rca_howto__icon {
        margin-bottom: 10px;
    }
}

.rca_footer__container {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 80px 20px 40px;
}

.rca_footer__content-wrapper {
    max-width: 1480px;
    margin: 0 auto;
}

.rca_footer__responsible-gaming {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ccb6b6, #000000);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.rca_footer__title {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #ff5297;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.rca_footer__title-icon {
    font-size: 1.5rem;
    animation: pulseIcon 2s infinite;
}

.rca_footer__description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.rca_footer__main {
    text-align: center;
}

.rca_footer__divider {
    width: 100%;
    height: 3px;
    background: #ff5297;
    margin-bottom: 30px;
}

.rca_footer__partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.rca_footer__partner-logos img {
    object-fit: contain;
    background: #fff;
    border-radius: 1rem;
}

.rca_footer__navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.rca_footer__nav-link {
    color: #2760d3;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rca_footer__nav-link:hover {
    color: #ff5297;
}

.rca_footer__copyright p {
    font-size: 0.95rem;
    opacity: 0.8;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .rca_footer__title {
        font-size: 2.2rem;
    }

    .rca_footer__description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .rca_footer__partner-logos {
        gap: 15px;
    }

    .rca_footer__partner-logos img {
        width: 60px;
        height: auto;
    }

    .rca_footer__nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .rca_footer__title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .rca_footer__description {
        font-size: 0.95rem;
    }

    .rca_footer__partner-logos {
        gap: 10px;
    }

    .rca_footer__partner-logos img {
        width: 50px;
        height: auto;
    }

    .rca_footer__nav-link {
        font-size: 0.85rem;
    }

    .rca_footer__copyright p {
        font-size: 0.9rem;
    }
}

.rca_age__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.99);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.rca_age__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: -1;
}

.rca_age__content {
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease forwards;
}

.rca_age__title {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #ff5297;
    margin-bottom: 20px;
}

.rca_age__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.rca_age__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rca_age__btn-yes,
.rca_age__btn-no {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rca_age__btn-yes {
    background-color: #02cf4a;
    color: #000000;
}

.rca_age__btn-yes:hover {
    background-color: #02a13a;
}

.rca_age__btn-no {
    background-color: #ff5297;
    color: #000000;
}

.rca_age__btn-no:hover {
    background-color: #e03d7a;
}

.rca_cookies__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 9998;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rca_cookies__banner.show {
    opacity: 1;
    transform: translateY(0);
}

.rca_cookies__text {
    font-size: 1rem;
    margin-right: 20px;
    flex: 1 1 200px;
    text-align: center;
}

.rca_cookies__link {
    color: #2760d3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rca_cookies__link:hover {
    color: #ff5297;
}

.rca_cookies__accept-btn {
    padding: 10px 25px;
    background-color: #02cf4a;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rca_cookies__accept-btn:hover {
    background-color: #02a13a;
}

.rca_scrolltop__btn {
    position: fixed;
    bottom: 171px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: #ff5297;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 82, 151, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
}

.rca_scrolltop__btn.show {
    opacity: 1;
    visibility: visible;
}

.rca_scrolltop__btn:hover {
    background-color: #e03d7a;
    transform: scale(1.1);
}

.rca_scrolltop__icon {
    font-size: 1.5rem;
    color: #ffffff;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .rca_age__title {
        font-size: 2rem;
    }

    .rca_age__description {
        font-size: 1rem;
    }

    .rca_age__btn-yes,
    .rca_age__btn-no {
        width: 100%;
    }

    .rca_cookies__text {
        font-size: 0.95rem;
        margin-right: 10px;
    }

    .rca_cookies__accept-btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .rca_age__content {
        padding: 30px 20px;
    }

    .rca_cookies__banner {
        padding: 15px;
    }

    .rca_cookies__text {
        font-size: 0.9rem;
    }
}

.rca_pg_header__section {
    width: 100%;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 100px 20px;
    text-align: center;
}

.rca_pg_header__content {
    max-width: 1000px;
    margin: 0 auto;
}

.rca_pg_header__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.rca_pg_header__description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    opacity: 0.9;
}

.rca_pg_contact__form-section {
    width: 100%;
    background-color: #000000;
    padding: 80px 20px;
    color: #ffffff;
}

.rca_pg_contact__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.rca_pg_contact__title {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.rca_pg_contact__subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
}

.rca_pg_contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rca_pg_contact__input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rca_pg_contact__label {
    font-weight: bold;
    font-size: 1rem;
}

.rca_pg_contact__input,
.rca_pg_contact__textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.rca_pg_contact__input:focus,
.rca_pg_contact__textarea:focus {
    outline: none;
    border-color: #ff5297;
}

.rca_pg_contact__textarea {
    resize: vertical;
}

.rca_pg_contact__error-message {
    font-size: 0.9rem;
    color: #ff5297;
    height: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rca_pg_contact__checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.rca_pg_contact__checkbox {
    accent-color: #ff5297;
    transform: scale(1.2);
}

.rca_pg_contact__checkbox-label {
    font-size: 0.95rem;
}

.rca_pg_contact__link {
    color: #2760d3;
    text-decoration: underline;
}

.rca_pg_contact__link:hover {
    color: #ff5297;
}

.rca_pg_contact__submit-btn {
    align-self: flex-start;
    padding: 12px 25px;
    background-color: #02cf4a;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.rca_pg_contact__submit-btn:hover {
    background-color: #02a13a;
}

.rca_pg_contact__submit-btn:disabled {
    background-color: #444444;
    cursor: not-allowed;
}

.rca_pg_contact__success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.rca_pg_contact__success-modal.show {
    opacity: 1;
    visibility: visible;
}

.rca_pg_contact__modal-content {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    animation: fadeInUp 0.6s ease forwards;
}

.rca_pg_contact__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #ff5297;
    cursor: pointer;
}

.rca_pg_contact__close-icon {
    font-size: 1.5rem;
}

.rca_pg_contact__success-icon {
    font-size: 3rem;
    color: #02cf4a;
    margin-bottom: 20px;
    display: block;
}

.rca_pg_contact__modal-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.rca_pg_contact__modal-text {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .rca_pg_header__title {
        font-size: 2.2rem;
    }

    .rca_pg_contact__title {
        font-size: 2rem;
    }

    .rca_pg_contact__description,
    .rca_pg_contact__subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rca_pg_header__title {
        font-size: 1.8rem;
    }

    .rca_pg_contact__title {
        font-size: 1.6rem;
    }

    .rca_pg_contact__input,
    .rca_pg_contact__textarea {
        font-size: 0.95rem;
    }

    .rca_pg_contact__checkbox-label {
        font-size: 0.85rem;
    }

    .rca_pg_contact__submit-btn {
        width: 100%;
        text-align: center;
    }
}

.rcapg_faq__header-section {
    width: 100%;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 100px 20px;
    text-align: center;
}

.rcapg_faq__header-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.rcapg_faq__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.rcapg_faq__description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.rcapg_faq__content-section {
    width: 100%;
    background-color: #000000;
    padding: 80px 20px;
    color: #ffffff;
}

.rcapg_faq__container {
    max-width: 1000px;
    margin: 0 auto;
}

.rcapg_faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rcapg_faq__item {
    background: linear-gradient(110deg, #ccb6b6, #000000);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.rcapg_faq__item:hover {
    transform: scale(1.01) rotate(-0.5deg);
}

.rcapg_faq__question {
    width: 100%;
    padding: 20px 30px;
    background-color: #000000;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.rcapg_faq__question:focus {
    outline: none;
}

.rcapg_faq__question:hover {
    background-color: #1e1e1e;
}

.rca_faq__icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.rcapg_faq__question[aria-expanded="true"] .rca_faq__icon {
    transform: rotate(-180deg);
}

.rcapg_faq__answer-wrapper {
    background-color: #1e1e1e;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.rcapg_faq__answer-wrapper.show {
    padding: 20px 30px;
    max-height: 300px;
}

.rcapg_faq__answer {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

@media (max-width: 768px) {
    .rcapg_faq__title {
        font-size: 2.2rem;
    }

    .rcapg_faq__description {
        font-size: 1rem;
    }

    .rcapg_faq__question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .rcapg_faq__answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .rcapg_faq__title {
        font-size: 1.8rem;
    }

    .rcapg_faq__description {
        font-size: 0.95rem;
    }

    .rcapg_faq__question {
        font-size: 0.95rem;
    }

    .rcapg_faq__answer {
        font-size: 0.9rem;
    }
}

.rcapg_responsible__hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 100px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.rcapg_responsible__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.rcapg_responsible__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.rcapg_responsible__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.rcapg_responsible__subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.rcapg_responsible__content-section {
    width: 100%;
    background-color: #000000;
    padding: 80px 20px;
    color: #ffffff;
}

.rcapg_responsible__container {
    max-width: 1000px;
    margin: 0 auto;
}

.rcapg_responsible__section-title {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ff5297;
    animation: pulseTitle 1.5s infinite alternate;
}

.rcapg_responsible__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rcapg_responsible__item {
    background: linear-gradient(110deg, #ccb6b6, #000000);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: start;
    gap: 20px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.rcapg_responsible__item:nth-child(1) { animation: fadeInUp 0.6s ease forwards; }
.rcapg_responsible__item:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s forwards; }
.rcapg_responsible__item:nth-child(3) { animation: fadeInUp 0.6s ease 0.4s forwards; }
.rcapg_responsible__item:nth-child(4) { animation: fadeInUp 0.6s ease 0.6s forwards; }
.rcapg_responsible__item:nth-child(5) { animation: fadeInUp 0.6s ease 0.8s forwards; }
.rcapg_responsible__item:nth-child(6) { animation: fadeInUp 0.6s ease 1s forwards; }
.rcapg_responsible__item:nth-child(7) { animation: fadeInUp 0.6s ease 1.2s forwards; }
.rcapg_responsible__item:nth-child(8) { animation: fadeInUp 0.6s ease 1.4s forwards; }
.rcapg_responsible__item:nth-child(9) { animation: fadeInUp 0.6s ease 1.6s forwards; }
.rcapg_responsible__item:nth-child(10) { animation: fadeInUp 0.6s ease 1.8s forwards; }
.rcapg_responsible__item:nth-child(11) { animation: fadeInUp 0.6s ease 2s forwards; }

.rcapg_responsible__item:hover {
    transform: scale(1.02) rotate(-1deg);
}

.rca_responsible__icon {
    font-size: 1.5rem;
    color: #ff5297;
    flex-shrink: 0;
    margin-top: 4px;
}

.rcapg_responsible__item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ffffff;
}

.rcapg_responsible__item span {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseTitle {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

@media (max-width: 1024px) {
    .rcapg_responsible__title {
        font-size: 2.5rem;
    }

    .rcapg_responsible__subtitle {
        font-size: 1.1rem;
    }

    .rcapg_responsible__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rcapg_responsible__hero {
        height: 400px;
    }

    .rcapg_responsible__title {
        font-size: 2.2rem;
    }

    .rcapg_responsible__subtitle {
        font-size: 1rem;
    }

    .rcapg_responsible__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rca_responsible__icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .rcapg_responsible__hero {
        height: 300px;
    }

    .rcapg_responsible__title {
        font-size: 1.8rem;
    }

    .rcapg_responsible__subtitle {
        font-size: 0.95rem;
    }

    .rcapg_responsible__section-title {
        font-size: 1.6rem;
    }

    .rcapg_responsible__item strong {
        font-size: 1rem;
    }

    .rcapg_responsible__item span {
        font-size: 0.95rem;
    }
}

.rcapg_cookies__hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.rcapg_cookies__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.rcapg_cookies__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.rcapg_cookies__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.rcapg_cookies__subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.rcapg_cookies__content-section {
    width: 100%;
    background-color: #000000;
    padding: 80px 20px;
    color: #ffffff;
}

.rcapg_cookies__container {
    max-width: 1000px;
    margin: 0 auto;
}

.rcapg_cookies__section-title {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ff5297;
    animation: pulseTitle 1.5s infinite alternate;
}

.rcapg_cookies__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rcapg_cookies__item {
    background: linear-gradient(110deg, #ccb6b6, #000000);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: start;
    gap: 20px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.rcapg_cookies__item:nth-child(1) { animation: fadeInUp 0.6s ease forwards; }
.rcapg_cookies__item:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s forwards; }
.rcapg_cookies__item:nth-child(3) { animation: fadeInUp 0.6s ease 0.4s forwards; }
.rcapg_cookies__item:nth-child(4) { animation: fadeInUp 0.6s ease 0.6s forwards; }
.rcapg_cookies__item:nth-child(5) { animation: fadeInUp 0.6s ease 0.8s forwards; }
.rcapg_cookies__item:nth-child(6) { animation: fadeInUp 0.6s ease 1s forwards; }
.rcapg_cookies__item:nth-child(7) { animation: fadeInUp 0.6s ease 1.2s forwards; }
.rcapg_cookies__item:nth-child(8) { animation: fadeInUp 0.6s ease 1.4s forwards; }
.rcapg_cookies__item:nth-child(9) { animation: fadeInUp 0.6s ease 1.6s forwards; }
.rcapg_cookies__item:nth-child(10) { animation: fadeInUp 0.6s ease 1.8s forwards; }

.rcapg_cookies__item:hover {
    transform: scale(1.02) rotate(-1deg);
}

.rca_cookies__icon {
    font-size: 1.5rem;
    color: #ff5297;
    flex-shrink: 0;
    margin-top: 4px;
}

.rcapg_cookies__item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ffffff;
}

.rcapg_cookies__item span {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseTitle {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

@media (max-width: 1024px) {
    .rcapg_cookies__title {
        font-size: 2.5rem;
    }

    .rcapg_cookies__subtitle {
        font-size: 1.1rem;
    }

    .rcapg_cookies__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rcapg_cookies__hero {
        min-height: 400px;
    }

    .rcapg_cookies__title {
        font-size: 2.2rem;
    }

    .rcapg_cookies__subtitle {
        font-size: 1rem;
    }

    .rcapg_cookies__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rca_cookies__icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .rcapg_cookies__hero {
        min-height: 300px;
    }

    .rcapg_cookies__title {
        font-size: 1.8rem;
    }

    .rcapg_cookies__subtitle {
        font-size: 0.95rem;
    }

    .rcapg_cookies__section-title {
        font-size: 1.6rem;
    }

    .rcapg_cookies__item strong {
        font-size: 1rem;
    }

    .rcapg_cookies__item span {
        font-size: 0.95rem;
    }
}

.rcapg_privacy__hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(110deg, #ccb6b6, #000000);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.rcapg_privacy__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.rcapg_privacy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.rcapg_privacy__title {
    font-family: 'Pirata One', cursive;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.rcapg_privacy__subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.rcapg_privacy__content-section {
    width: 100%;
    background-color: #000000;
    padding: 80px 20px;
    color: #ffffff;
}

.rcapg_privacy__container {
    max-width: 1000px;
    margin: 0 auto;
}

.rcapg_privacy__section-title {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ff5297;
    animation: pulseTitle 1.5s infinite alternate;
}

.rcapg_privacy__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rcapg_privacy__item {
    background: linear-gradient(110deg, #ccb6b6, #000000);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: start;
    gap: 20px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.rcapg_privacy__item:nth-child(1) { animation: fadeInUp 0.6s ease forwards; }
.rcapg_privacy__item:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s forwards; }
.rcapg_privacy__item:nth-child(3) { animation: fadeInUp 0.6s ease 0.4s forwards; }
.rcapg_privacy__item:nth-child(4) { animation: fadeInUp 0.6s ease 0.6s forwards; }
.rcapg_privacy__item:nth-child(5) { animation: fadeInUp 0.6s ease 0.8s forwards; }
.rcapg_privacy__item:nth-child(6) { animation: fadeInUp 0.6s ease 1s forwards; }
.rcapg_privacy__item:nth-child(7) { animation: fadeInUp 0.6s ease 1.2s forwards; }
.rcapg_privacy__item:nth-child(8) { animation: fadeInUp 0.6s ease 1.4s forwards; }
.rcapg_privacy__item:nth-child(9) { animation: fadeInUp 0.6s ease 1.6s forwards; }
.rcapg_privacy__item:nth-child(10) { animation: fadeInUp 0.6s ease 1.8s forwards; }

.rcapg_privacy__item:hover {
    transform: scale(1.02) rotate(-1deg);
}

.rca_privacy__icon {
    font-size: 1.5rem;
    color: #ff5297;
    flex-shrink: 0;
    margin-top: 4px;
}

.rcapg_privacy__item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ffffff;
}

.rcapg_privacy__item span {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseTitle {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

@media (max-width: 1024px) {
    .rcapg_privacy__title {
        font-size: 2.5rem;
    }

    .rcapg_privacy__subtitle {
        font-size: 1.1rem;
    }

    .rcapg_privacy__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rcapg_privacy__hero {
        min-height: 400px;
    }

    .rcapg_privacy__title {
        font-size: 2.2rem;
    }

    .rcapg_privacy__subtitle {
        font-size: 1rem;
    }

    .rcapg_privacy__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rca_privacy__icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .rcapg_privacy__hero {
        min-height: 300px;
    }

    .rcapg_privacy__title {
        font-size: 1.8rem;
    }

    .rcapg_privacy__subtitle {
        font-size: 0.95rem;
    }

    .rcapg_privacy__section-title {
        font-size: 1.6rem;
    }

    .rcapg_privacy__item strong {
        font-size: 1rem;
    }

    .rcapg_privacy__item span {
        font-size: 0.95rem;
    }
}
