/* style/resources-789b-security-features.css */

/* Variables */
:root {
    --page-primary-color: #0A192F;
    --page-accent-color: #FFD700;
    --page-text-light: #FFFFFF;
    --page-text-dark: #0A192F; /* Using primary color for dark text on light backgrounds */
    --page-background-light: #F8F8F8;
    --page-background-dark: #1A2E44; /* Slightly lighter than primary for section distinction */
}

.page-resources-789b-security-features {
    font-family: 'Arial', sans-serif;
    color: var(--page-text-dark);
    line-height: 1.6;
}

.page-resources-789b-security-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-789b-security-features .hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #1A2E44 100%);
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-789b-security-features .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_security_pattern,digital_grid,light_effect]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-789b-security-features .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-accent-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-789b-security-features .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-resources-789b-security-features .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-resources-789b-security-features .btn-primary {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
}

.page-resources-789b-security-features .btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
}

.page-resources-789b-security-features .btn-secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border: 2px solid var(--page-accent-color);
}

.page-resources-789b-security-features .btn-secondary:hover {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
}

/* Section Titles */
.page-resources-789b-security-features .section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-789b-security-features .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    border-radius: 2px;
}

/* General Section Styling */
.page-resources-789b-security-features .security-overview-section,
.page-resources-789b-security-features .account-security-section,
.page-resources-789b-security-features .data-encryption-section,
.page-resources-789b-security-features .fair-play-section,
.page-resources-789b-security-features .fraud-prevention-section,
.page-resources-789b-security-features .support-commitment-section {
    padding: 80px 0;
}

.page-resources-789b-security-features .security-overview-section,
.page-resources-789b-security-features .fair-play-section,
.page-resources-789b-security-features .support-commitment-section {
    background-color: var(--page-background-light);
}

.page-resources-789b-security-features .data-encryption-section,
.page-resources-789b-security-features .fraud-prevention-section {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
}

.page-resources-789b-security-features .data-encryption-section .section-title,
.page-resources-789b-security-features .fraud-prevention-section .section-title {
    color: var(--page-text-light);
}

.page-resources-789b-security-features .data-encryption-section .section-title::after,
.page-resources-789b-security-features .fraud-prevention-section .section-title::after {
    background-color: var(--page-accent-color);
}

.page-resources-789b-security-features .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-resources-789b-security-features .content-wrapper.reverse {
    flex-direction: row-reverse;
}

.page-resources-789b-security-features .content-wrapper p {
    flex: 1;
    font-size: 1.1em;
}

.page-resources-789b-security-features .content-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Grid Layout for Features */
.page-resources-789b-security-features .grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-789b-security-features .security-feature-item {
    background-color: var(--page-text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-789b-security-features .security-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-789b-security-features .data-encryption-section .security-feature-item,
.page-resources-789b-security-features .fraud-prevention-section .security-feature-item {
    background-color: #2b4562; /* Darker background for items in dark sections */
    color: var(--page-text-light);
}

.page-resources-789b-security-features .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-resources-789b-security-features .feature-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-789b-security-features .data-encryption-section .feature-title,
.page-resources-789b-security-features .fraud-prevention-section .feature-title {
    color: var(--page-accent-color);
}

.page-resources-789b-security-features .commitment-text {
    font-size: 1.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-primary-color);
}

.page-resources-789b-security-features .support-commitment-section .commitment-text {
    color: var(--page-primary-color);
}

.page-resources-789b-security-features .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.2em;
}

/* Floating Promo Banner */
.page-resources-789b-security-features .floating-promo-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--page-accent-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideIn 0.5s ease-out forwards;
}

.page-resources-789b-security-features .floating-promo-banner .promo-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--page-primary-color);
}

.page-resources-789b-security-features .floating-promo-banner .promo-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-resources-789b-security-features .floating-promo-banner .promo-text {
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-resources-789b-security-features .floating-promo-banner .promo-button {
    background-color: var(--page-primary-color);
    color: var(--page-accent-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-789b-security-features .floating-promo-banner .promo-button:hover {
    background-color: #000;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-789b-security-features .hero-title {
        font-size: 2.8em;
    }
    .page-resources-789b-security-features .hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-789b-security-features .section-title {
        font-size: 2em;
    }
    .page-resources-789b-security-features .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-789b-security-features .content-wrapper.reverse {
        flex-direction: column;
    }
    .page-resources-789b-security-features .content-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-resources-789b-security-features .hero-section {
        padding: 80px 0;
    }
    .page-resources-789b-security-features .hero-title {
        font-size: 2.2em;
    }
    .page-resources-789b-security-features .hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-789b-security-features .section-title {
        font-size: 1.8em;
    }
    .page-resources-789b-security-features .grid-layout {
        grid-template-columns: 1fr;
    }
    .page-resources-789b-security-features .security-feature-item {
        padding: 25px;
    }
    .page-resources-789b-security-features .floating-promo-banner {
        bottom: 10px;
        right: 10px;
        left: 10px; /* Make it full width on small screens */
        width: auto;
    }
    .page-resources-789b-security-features .floating-promo-banner .promo-link {
        padding: 10px 15px;
    }
    .page-resources-789b-security-features .floating-promo-banner .promo-text {
        font-size: 0.9em;
    }
    .page-resources-789b-security-features .floating-promo-banner .promo-button {
        padding: 6px 10px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-resources-789b-security-features .hero-title {
        font-size: 1.8em;
    }
    .page-resources-789b-security-features .hero-subtitle {
        font-size: 1em;
    }
    .page-resources-789b-security-features .section-title {
        font-size: 1.5em;
    }
    .page-resources-789b-security-features .btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-resources-789b-security-features .content-wrapper p {
        font-size: 1em;
    }
    .page-resources-789b-security-features .floating-promo-banner .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .page-resources-789b-security-features .floating-promo-banner .promo-button {
        margin-top: 5px;
    }
}