/* style/index-security-guarantee.css */

.page-index-security-guarantee {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light grey for general text on dark background */
    background-color: #0A2239; /* Deep Sea Blue */
    line-height: 1.6;
}

/* Hero Section */
.page-index-security-guarantee__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-security-guarantee__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-index-security-guarantee__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-index-security-guarantee__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-index-security-guarantee__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-security-guarantee__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-index-security-guarantee__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2239; /* Deep Sea Blue */
    border-color: #FFD700;
}

.page-index-security-guarantee__btn--primary:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: translateY(-3px);
}

.page-index-security-guarantee__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border-color: #FFD700;
}

.page-index-security-guarantee__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-index-security-guarantee__hero-image-wrapper {
    margin-top: 50px;
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 0;
}

.page-index-security-guarantee__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-security-guarantee__section {
    padding: 80px 20px;
    text-align: center;
}

.page-index-security-guarantee__section--why-security {
    background-color: #061625; /* Slightly lighter dark blue */
}

.page-index-security-guarantee__section--measures {
    background-color: #0A2239;
}

.page-index-security-guarantee__section--player-responsibility {
    background-color: #061625;
}

.page-index-security-guarantee__section--cta {
    background: linear-gradient(90deg, #FFD700 0%, #DC143C 100%); /* Gold to Red gradient */
    color: #0A2239; /* Dark text on light/bright background */
    padding: 100px 20px;
}

.page-index-security-guarantee__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 25px;
    font-weight: bold;
}

.page-index-security-guarantee__section--cta .page-index-security-guarantee__section-title,
.page-index-security-guarantee__cta-title {
    color: #0A2239; /* Dark blue on bright background */
}

.page-index-security-guarantee__section-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-index-security-guarantee__section--cta .page-index-security-guarantee__section-description,
.page-index-security-guarantee__cta-description {
    color: #0A2239;
}

.page-index-security-guarantee__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid for Why Security Section */
.page-index-security-guarantee__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-index-security-guarantee__grid-item {
    background-color: #1a3a5a; /* Darker blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-index-security-guarantee__grid-item:hover {
    transform: translateY(-10px);
}

.page-index-security-guarantee__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Makes icon gold-ish */
}

.page-index-security-guarantee__item-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

.page-index-security-guarantee__item-description {
    font-size: 1em;
    color: #E0E0E0;
}

/* Features Section */
.page-index-security-guarantee__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-index-security-guarantee__feature-item {
    background-color: #1a3a5a;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-index-security-guarantee__feature-item:hover {
    transform: translateY(-10px);
}

.page-index-security-guarantee__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold-ish */
}

.page-index-security-guarantee__feature-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-security-guarantee__feature-text {
    font-size: 1.1em;
    color: #E0E0E0;
}

/* Player Responsibility Section */
.page-index-security-guarantee__responsibility-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-security-guarantee__responsibility-list li {
    background-color: #1a3a5a;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
}

.page-index-security-guarantee__responsibility-list li:hover {
    background-color: #2a4a6a;
}

.page-index-security-guarantee__responsibility-list li strong {
    color: #FFD700; /* Gold */
    display: block;
    margin-bottom: 8px;
    font-size: 1.2em;
}

/* Call to Action Section */
.page-index-security-guarantee__cta-content {
    max-width: 900px;
}

.page-index-security-guarantee__cta-title {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-index-security-guarantee__cta-description {
    font-size: 1.4em;
    margin-bottom: 50px;
    color: #0A2239;
}

.page-index-security-guarantee__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-security-guarantee__section--cta .page-index-security-guarantee__btn--primary {
    background-color: #0A2239; /* Dark blue on bright background */
    color: #FFD700;
    border-color: #0A2239;
}

.page-index-security-guarantee__section--cta .page-index-security-guarantee__btn--primary:hover {
    background-color: #1a3a5a;
    border-color: #1a3a5a;
    color: #FFD700;
}

.page-index-security-guarantee__section--cta .page-index-security-guarantee__btn--secondary {
    background-color: transparent;
    color: #0A2239;
    border-color: #0A2239;
}

.page-index-security-guarantee__section--cta .page-index-security-guarantee__btn--secondary:hover {
    background-color: #0A2239;
    color: #FFD700;
}

/* Animations for JS */
.page-index-security-guarantee__section:not(.is-visible),
.page-index-security-guarantee__grid-item:not(.is-visible),
.page-index-security-guarantee__feature-item:not(.is-visible) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-index-security-guarantee__section.is-visible,
.page-index-security-guarantee__grid-item.is-visible,
.page-index-security-guarantee__feature-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-security-guarantee__hero-title {
        font-size: 2.8em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 2.4em;
    }
    .page-index-security-guarantee__cta-title {
        font-size: 2.6em;
    }
}

@media (max-width: 768px) {
    .page-index-security-guarantee__hero {
        padding: 60px 15px;
    }
    .page-index-security-guarantee__hero-title {
        font-size: 2.2em;
    }
    .page-index-security-guarantee__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-security-guarantee__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-security-guarantee__btn {
        width: 80%;
        max-width: 300px;
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-index-security-guarantee__section {
        padding: 60px 15px;
    }
    .page-index-security-guarantee__section-title {
        font-size: 2em;
    }
    .page-index-security-guarantee__section-description {
        font-size: 1.1em;
    }
    .page-index-security-guarantee__grid-item,
    .page-index-security-guarantee__feature-item {
        text-align: center;
        align-items: center;
    }
    .page-index-security-guarantee__cta-title {
        font-size: 2.2em;
    }
    .page-index-security-guarantee__cta-description {
        font-size: 1.2em;
    }
    .page-index-security-guarantee__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-security-guarantee__hero-title {
        font-size: 1.8em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 1.6em;
    }
    .page-index-security-guarantee__cta-title {
        font-size: 1.8em;
    }
    .page-index-security-guarantee__btn {
        width: 100%;
    }
    .page-index-security-guarantee__grid-item,
    .page-index-security-guarantee__feature-item {
        padding: 25px;
    }
    .page-index-security-guarantee__responsibility-list li {
        padding: 20px 25px;
        font-size: 1em;
    }
}