/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A2342; /* Main dark background */
    line-height: 1.6;
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2342, #1a3a60);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary gold for highlight */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-terms-conditions__hero-description {
    font-size: 1.4em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-terms-conditions__hero-image-wrapper {
    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(80%) blur(3px);
}

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #0A2342; /* Main dark background */
    color: #f5f5f5;
}

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

.page-terms-conditions__article {
    background-color: #1a3a60; /* Slightly lighter dark for content block */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Auxiliary gold for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__article h2:first-of-type {
    margin-top: 0;
}

.page-terms-conditions__article p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-terms-conditions__list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-terms-conditions__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-terms-conditions__link-inline {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__link-inline:hover {
    color: #ffe040; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-terms-conditions__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__image-centered {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__responsible-gambling-note {
    background-color: #0A2342; /* Main dark background */
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-terms-conditions__responsible-gambling-note p {
    margin: 0;
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1em;
}

.page-terms-conditions__icon-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.page-terms-conditions__cta-text {
    font-size: 1.5em;
    color: #FFD700; /* Gold for CTA text */
    margin-bottom: 25px;
    font-weight: bold;
}

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

.page-terms-conditions__button--primary {
    background-color: #FFD700; /* Auxiliary gold for primary button */
    color: #0A2342; /* Main dark for text */
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--primary:hover {
    background-color: #ffe040; /* Lighter gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__hero-title {
        font-size: 2.5em;
    }

    .page-terms-conditions__hero-description {
        font-size: 1.2em;
    }

    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }

    .page-terms-conditions__article {
        padding: 25px;
    }

    .page-terms-conditions__article p,
    .page-terms-conditions__list li {
        font-size: 1em;
    }

    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-terms-conditions__cta-text {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero-title {
        font-size: 2em;
    }

    .page-terms-conditions__hero-description {
        font-size: 1em;
    }

    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }

    .page-terms-conditions__article {
        padding: 15px;
    }

    .page-terms-conditions__list {
        margin-left: 20px;
    }

    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-terms-conditions__cta-text {
        font-size: 1.1em;
    }
    
    .page-terms-conditions__responsible-gambling-note {
        flex-direction: column;
        text-align: center;
    }
    .page-terms-conditions__responsible-gambling-note p {
        margin-bottom: 10px;
    }
}