/* style/gambling-platforms-registration-details.css */

.page-gambling-platforms-registration-details {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-gambling-platforms-registration-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-platforms-registration-details__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-platforms-registration-details__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    filter: blur(80px);
}

.page-gambling-platforms-registration-details__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    filter: blur(100px);
}

.page-gambling-platforms-registration-details__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* High contrast with dark blue */
}

.page-gambling-platforms-registration-details__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

.page-gambling-platforms-registration-details__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #007bff; /* Main color for text, good contrast */
}

.page-gambling-platforms-registration-details__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-gambling-platforms-registration-details__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #ffc107;
}

.page-gambling-platforms-registration-details__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-gambling-platforms-registration-details__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-gambling-platforms-registration-details__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gambling-platforms-registration-details__section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-gambling-platforms-registration-details__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-gambling-platforms-registration-details__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-gambling-platforms-registration-details__text-content {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.page-gambling-platforms-registration-details__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-platforms-registration-details__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #eaf6ff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.1);
    transition: transform 0.3s ease;
}

.page-gambling-platforms-registration-details__feature-item:hover {
    transform: translateY(-5px);
}

.page-gambling-platforms-registration-details__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.2));
}

.page-gambling-platforms-registration-details__feature-title {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
}

.page-gambling-platforms-registration-details__feature-description {
    color: #666;
    font-size: 0.95em;
}

.page-gambling-platforms-registration-details__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-gambling-platforms-registration-details__step-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-left: 5px solid #007bff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    padding-left: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-gambling-platforms-registration-details__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffc107;
    color: #007bff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(255, 193, 7, 0.4);
}

.page-gambling-platforms-registration-details__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gambling-platforms-registration-details__step-description {
    color: #555;
    font-size: 1em;
}

.page-gambling-platforms-registration-details__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gambling-platforms-registration-details__platform-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-platforms-registration-details__platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-gambling-platforms-registration-details__card-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
}

.page-gambling-platforms-registration-details__card-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gambling-platforms-registration-details__card-text {
    color: #555;
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gambling-platforms-registration-details__mini-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #666;
}

.page-gambling-platforms-registration-details__mini-list li {
    margin-bottom: 8px;
}

.page-gambling-platforms-registration-details__mini-list strong {
    color: #007bff;
}

.page-gambling-platforms-registration-details__platform-card .page-gambling-platforms-registration-details__btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
}

.page-gambling-platforms-registration-details__checklist {
    list-style: none;
    padding: 0;
}

.page-gambling-platforms-registration-details__checklist li {
    background-color: #e6f7ff;
    border-left: 4px solid #007bff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: #333;
    font-size: 1.1em;
    position: relative;
    padding-left: 45px;
}

.page-gambling-platforms-registration-details__checklist li::before {
    content: '✓';
    color: #007bff;
    font-weight: bold;
    font-size: 1.4em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-gambling-platforms-registration-details__illustration-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-platforms-registration-details__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #d0e9ff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-gambling-platforms-registration-details__faq-question {
    font-size: 1.3em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gambling-platforms-registration-details__faq-answer {
    color: #555;
    font-size: 1em;
}

.page-gambling-platforms-registration-details__cta-section {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gambling-platforms-registration-details__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffc107; /* High contrast */
}

.page-gambling-platforms-registration-details__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-gambling-platforms-registration-details__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background-color: #ffc107;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
    animation: page-gambling-platforms-registration-details__fadeInUp 0.5s ease-out;
}

.page-gambling-platforms-registration-details__floating-ad a {
    display: block;
    text-decoration: none;
    color: #007bff;
    padding: 15px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-gambling-platforms-registration-details__ad-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.page-gambling-platforms-registration-details__ad-text {
    flex-grow: 1;
}

.page-gambling-platforms-registration-details__floating-ad:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes page-gambling-platforms-registration-details__fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gambling-platforms-registration-details__hero-title {
        font-size: 2.5em;
    }
    .page-gambling-platforms-registration-details__hero-description {
        font-size: 1.1em;
    }
    .page-gambling-platforms-registration-details__section-title {
        font-size: 1.8em;
    }
    .page-gambling-platforms-registration-details__cta-title {
        font-size: 2em;
    }
    .page-gambling-platforms-registration-details__step-item {
        padding-left: 55px;
    }
    .page-gambling-platforms-registration-details__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: 15px;
    }
    .page-gambling-platforms-registration-details__floating-ad {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 10px;
    }
    .page-gambling-platforms-registration-details__floating-ad a {
        font-size: 1em;
        padding: 10px;
    }
    .page-gambling-platforms-registration-details__ad-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .page-gambling-platforms-registration-details__hero-title {
        font-size: 2em;
    }
    .page-gambling-platforms-registration-details__hero-description {
        font-size: 1em;
    }
    .page-gambling-platforms-registration-details__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-platforms-registration-details__cta-title {
        font-size: 1.8em;
    }
    .page-gambling-platforms-registration-details__cta-description {
        font-size: 1em;
    }
    .page-gambling-platforms-registration-details__features-grid {
        grid-template-columns: 1fr;
    }
    .page-gambling-platforms-registration-details__step-title {
        font-size: 1.3em;
    }
    .page-gambling-platforms-registration-details__card-title {
        font-size: 1.5em;
    }
}