/* style/terms-conditions.css */

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-terms-conditions__hero-content {
    z-index: 10;
    position: relative;
    max-width: 800px;
}

.page-terms-conditions__main-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffc107; /* Highlight with auxiliary color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
    font-size: 1.4em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.page-terms-conditions__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-terms-conditions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-terms-conditions__article {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
}

.page-terms-conditions__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-terms-conditions__content-image,
.page-terms-conditions__responsible-gambling-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-section {
    background: linear-gradient(90deg, #007bff, #ffc107);
    color: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 8px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__cta-section::before {
    content: '';
    position: absolute;
    top: -50%;    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    opacity: 0.3;
    z-index: 1;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.page-terms-conditions__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
    position: relative;
    z-index: 2;
}

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__btn--primary {
    background-color: #ffc107;
    color: #000;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-terms-conditions__btn--secondary {
    background-color: #0056b3;
    color: #fff;
    border: 2px solid #fff;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #003f80;
    transform: translateY(-3px);
}

.page-terms-conditions__cta-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
    filter: grayscale(100%) brightness(50%);
    transform: rotate(-15deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__hero-section {
        padding: 60px 15px;
        min-height: 250px;
    }
    .page-terms-conditions__main-title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1.1em;
    }
    .page-terms-conditions__heading {
        font-size: 1.8em;
    }
    .page-terms-conditions__article {
        padding: 20px;
    }
    .page-terms-conditions__cta-section {
        padding: 40px 20px;
    }
    .page-terms-conditions__cta-title {
        font-size: 2em;
    }
    .page-terms-conditions__cta-description {
        font-size: 1em;
    }
    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-terms-conditions__btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__main-title {
        font-size: 2em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__heading {
        font-size: 1.5em;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__cta-description {
        font-size: 0.9em;
    }
}