/* style/registration-tutorial-red88-mobile-registration.css */

:root {
    --page-red88-primary-color: #DC143C;
    --page-red88-secondary-color: #36454F;
    --page-red88-text-light: #F8F8F8; /* Light text for dark backgrounds */
    --page-red88-text-dark: #222222; /* Dark text for light backgrounds */
    --page-red88-background-light: #FFFFFF;
    --page-red88-background-dark: #2A363E; /* Slightly lighter than secondary for background */
    --page-red88-accent-color: #23ebc3; /* Complementary to primary for emphasis */
    --page-red88-border-color: rgba(220, 20, 60, 0.3);
}

.page-registration-tutorial-red88-mobile-registration {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-red88-text-dark);
    background-color: var(--page-red88-background-light);
}

.page-registration-tutorial-red88-mobile-registration__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-tutorial-red88-mobile-registration__hero {
    background: linear-gradient(135deg, var(--page-red88-primary-color), var(--page-red88-secondary-color));
    color: var(--page-red88-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-tutorial-red88-mobile-registration__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-registration-tutorial-red88-mobile-registration__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-tutorial-red88-mobile-registration__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-registration-tutorial-red88-mobile-registration__btn--primary {
    background-color: var(--page-red88-primary-color);
    color: var(--page-red88-text-light);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.page-registration-tutorial-red88-mobile-registration__btn--primary:hover {
    background-color: #A90E2A; /* Darker crimson */
    transform: translateY(-2px);
}

.page-registration-tutorial-red88-mobile-registration__btn--secondary {
    background-color: var(--page-red88-secondary-color);
    color: var(--page-red88-text-light);
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(54, 69, 79, 0.4);
}

.page-registration-tutorial-red88-mobile-registration__btn--secondary:hover {
    background-color: #2A363E; /* Darker charcoal */
    transform: translateY(-2px);
}

.page-registration-tutorial-red88-mobile-registration__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-registration-tutorial-red88-mobile-registration__section {
    padding: 60px 0;
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) {
    background-color: var(--page-red88-background-dark);
    color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__section-title,
.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) h3 {
    color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--page-red88-primary-color);
    position: relative;
}

.page-registration-tutorial-red88-mobile-registration__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-red88-primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__section-title::after {
    background-color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-registration-tutorial-red88-mobile-registration__benefit-item {
    background-color: var(--page-red88-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--page-red88-text-dark);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__benefit-item {
    background-color: var(--page-red88-secondary-color);
    color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__benefit-item:hover {
    transform: translateY(-5px);
}

.page-registration-tutorial-red88-mobile-registration__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-registration-tutorial-red88-mobile-registration__benefit-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--page-red88-primary-color);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__benefit-item h3 {
    color: var(--page-red88-accent-color);
}

.page-registration-tutorial-red88-mobile-registration__intro-text {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-tutorial-red88-mobile-registration__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-registration-tutorial-red88-mobile-registration__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    background-color: var(--page-red88-background-light);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__step-item {
    background-color: var(--page-red88-secondary-color);
    color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__step-number {
    width: 60px;
    height: 60px;
    background-color: var(--page-red88-primary-color);
    color: var(--page-red88-text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.5);
    position: absolute;
    top: -30px;
}

.page-registration-tutorial-red88-mobile-registration__step-item h3 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--page-red88-primary-color);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__step-item h3 {
    color: var(--page-red88-accent-color);
}

.page-registration-tutorial-red88-mobile-registration__step-item p {
    font-size: 1.05em;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-registration-tutorial-red88-mobile-registration__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--page-red88-border-color);
}

.page-registration-tutorial-red88-mobile-registration__call-to-action {
    text-align: center;
    margin-top: 80px;
    padding: 50px 30px;
    background-color: var(--page-red88-background-dark);
    color: var(--page-red88-text-light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-registration-tutorial-red88-mobile-registration__call-to-action h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--page-red88-accent-color);
}

.page-registration-tutorial-red88-mobile-registration__call-to-action p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-tutorial-red88-mobile-registration__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-registration-tutorial-red88-mobile-registration__list li {
    background-color: var(--page-red88-background-light);
    border-left: 5px solid var(--page-red88-primary-color);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__list li {
    background-color: var(--page-red88-secondary-color);
    color: var(--page-red88-text-light);
    border-left-color: var(--page-red88-accent-color);
}

.page-registration-tutorial-red88-mobile-registration__list li strong {
    color: var(--page-red88-primary-color);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__list li strong {
    color: var(--page-red88-accent-color);
}

.page-registration-tutorial-red88-mobile-registration__faq-item {
    background-color: var(--page-red88-background-light);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__faq-item {
    background-color: var(--page-red88-secondary-color);
    color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__faq-item h3 {
    font-size: 1.3em;
    color: var(--page-red88-primary-color);
    margin-bottom: 10px;
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .page-registration-tutorial-red88-mobile-registration__faq-item h3 {
    color: var(--page-red88-accent-color);
}

.page-registration-tutorial-red88-mobile-registration__faq-item p {
    font-size: 1em;
}

.page-registration-tutorial-red88-mobile-registration__final-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--page-red88-primary-color);
    color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__final-cta .page-registration-tutorial-red88-mobile-registration__section-title {
    color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__final-cta .page-registration-tutorial-red88-mobile-registration__section-title::after {
    background-color: var(--page-red88-text-light);
}

.page-registration-tutorial-red88-mobile-registration__final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-tutorial-red88-mobile-registration .highlight {
    color: var(--page-red88-primary-color);
}

.page-registration-tutorial-red88-mobile-registration__section:nth-of-type(even) .highlight {
    color: var(--page-red88-accent-color);
}

/* Floating Ad */
.page-registration-tutorial-red88-mobile-registration__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.page-registration-tutorial-red88-mobile-registration__floating-ad:hover {
    transform: scale(1.05);
}

.page-registration-tutorial-red88-mobile-registration__floating-ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-tutorial-red88-mobile-registration__hero {
        padding: 60px 0;
    }

    .page-registration-tutorial-red88-mobile-registration__hero-title {
        font-size: 2.2em;
    }

    .page-registration-tutorial-red88-mobile-registration__hero-description {
        font-size: 1em;
    }

    .page-registration-tutorial-red88-mobile-registration__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-registration-tutorial-red88-mobile-registration__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-registration-tutorial-red88-mobile-registration__section-title {
        font-size: 1.8em;
    }

    .page-registration-tutorial-red88-mobile-registration__grid {
        grid-template-columns: 1fr;
    }

    .page-registration-tutorial-red88-mobile-registration__step-item {
        padding: 60px 15px 20px;
    }

    .page-registration-tutorial-red88-mobile-registration__step-number {
        top: -30px;
    }

    .page-registration-tutorial-red88-mobile-registration__step-item h3 {
        font-size: 1.5em;
        margin-top: 20px;
    }

    .page-registration-tutorial-red88-mobile-registration__call-to-action h3 {
        font-size: 1.8em;
    }

    .page-registration-tutorial-red88-mobile-registration__floating-ad {
        width: 100px;
        height: 100px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .page-registration-tutorial-red88-mobile-registration__hero-title {
        font-size: 1.8em;
    }

    .page-registration-tutorial-red88-mobile-registration__btn {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .page-registration-tutorial-red88-mobile-registration__btn--secondary {
        margin-top: 15px;
    }

    .page-registration-tutorial-red88-mobile-registration__section-title {
        font-size: 1.5em;
    }

    .page-registration-tutorial-red88-mobile-registration__floating-ad {
        width: 80px;
        height: 80px;
        bottom: 10px;
        right: 10px;
    }
}