/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo Styles */
.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--text-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 12px;
}

.btn-login,
.btn-register-header {
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-register-header {
    background-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 4px 10px rgba(145, 70, 255, 0.3);
}

.btn-register-header:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(145, 70, 255, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.toggle-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu li a {
    display: block;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: var(--text-color);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-login-mobile,
.btn-register-mobile {
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-login-mobile {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.btn-login-mobile:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-register-mobile {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-register-mobile:hover {
    background-color: var(--btn-hover);
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-bg-secondary);
    color: var(--text-secondary);
    padding-top: 70px;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

/* Footer About */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-heading {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 3px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--text-color);
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--text-color);
}

.disclaimer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 990;
}

.sticky-btn {
    flex: 1;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: center;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.login-btn {
    background-color: #2C2F36;
}

.login-btn:hover {
    background-color: #3a3d46;
}

.register-btn {
    background-color: var(--primary-color);
}

.register-btn:hover {
    background-color: var(--btn-hover);
}

.bonus-btn {
    background-color: #7030a0;
}

.bonus-btn:hover {
    background-color: #8641b5;
}

/* Main Content Padding for Fixed Header & Sticky Footer */
main {
    padding-top: 70px;
    /* Height of header */
    padding-bottom: 70px;
    /* Height of sticky buttons */
}

/* Media Queries */
@media (max-width: 1280px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-menu li a {
        font-size: 0.9rem;
    }

    .btn-login,
    .btn-register-header {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-column {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .header-buttons {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .sticky-btn span {
        font-size: 0.75rem;
    }

    .sticky-btn i {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .site-logo i {
        font-size: 1.5rem;
    }

    .toggle-icon {
        width: 35px;
        height: 35px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Base styles and Hero Section CSS */

/* Base styles */
:root {
    --primary-color: #9146FF;
    --secondary-color: #2C2F36;
    --accent-color: #FFD700;
    --text-color: #FFFFFF;
    --text-secondary: #CCCCCC;
    --dark-bg: #121212;
    --dark-bg-secondary: #1E1E1E;
    --btn-hover: #7a39db;
    --btn-secondary-hover: #3a3d46;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #2a0845 0%, #6441A5 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/megame369.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 180px;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--btn-secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.feature span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        min-width: 220px;
    }

    .hero-features {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .feature i {
        font-size: 1.5rem;
    }
}

/* Game Categories Section */
.game-categories-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.game-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(145, 70, 255, 0.15), transparent 60%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.game-card {
    background-color: var(--dark-bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background-color: var(--btn-hover);
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
    position: relative;
}

.game-icon {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.game-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.section-cta {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(44, 47, 54, 0.8) 0%, rgba(33, 36, 43, 0.8) 100%);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.section-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.2rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .game-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .game-categories-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .game-cards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .game-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .game-image {
        height: 180px;
    }

    .section-cta {
        padding: 20px 15px;
    }

    .btn-lg {
        padding: 10px 25px;
        font-size: 1.1rem;
    }
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
    position: relative;
    overflow: hidden;
}

.promo-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(145, 70, 255, 0.1) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 20%);
    opacity: 0.6;
    z-index: 1;
}

.promotions-section .container {
    position: relative;
    z-index: 2;
}

.promotions-wrapper {
    margin: 50px 0;
}

.promotion-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(145deg, #232730, #1a1d24);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.promo-card.featured {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: var(--accent-color);
    color: #000;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7030a0);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.promo-icon i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.promo-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.promo-details {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.promo-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-claim {
    background-color: var(--dark-bg);
    color: var(--text-color);
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-claim:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Promo Steps */
.promo-steps {
    margin-top: 60px;
    background: linear-gradient(145deg, rgba(44, 47, 54, 0.8), rgba(33, 36, 43, 0.8));
    border-radius: 15px;
    padding: 40px 30px;
}

.steps-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #7030a0);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* Media Queries for Promotions Section */
@media (max-width: 992px) {
    .promotion-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .steps-container {
        flex-direction: column;
        gap: 10px;
    }

    .step {
        width: 100%;
        max-width: 280px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 60px 0;
    }

    .promotion-slider {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .promo-steps {
        padding: 30px 20px;
    }

    .steps-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .promo-card {
        padding: 20px;
    }

    .promo-icon {
        width: 50px;
        height: 50px;
    }

    .promo-icon i {
        font-size: 1.5rem;
    }

    .promo-content h3 {
        font-size: 1.2rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step h4 {
        font-size: 1.1rem;
    }
}

/* Login & Registration Section */
.login-register-section {
    padding: 90px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.login-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.06;
}

.element-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    top: -100px;
    left: -150px;
}

.element-2 {
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    bottom: -100px;
    right: -100px;
}

.element-3 {
    width: 200px;
    height: 200px;
    background-color: #7030a0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-register-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Login Information Section */
.login-info {
    flex: 1;
    max-width: 550px;
}

.left-aligned {
    text-align: left;
}

.left-aligned h2::after {
    left: 0;
    transform: none;
}

.login-steps {
    margin: 40px 0;
}

.login-step {
    display: flex;
    margin-bottom: 25px;
    background: linear-gradient(145deg, #232730, #1a1d24);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.login-step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.login-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Registration Form Container */
.register-form-container {
    flex: 1;
    max-width: 450px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.form-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.register-mockup {
    background: linear-gradient(145deg, #232730, #1a1d24);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    background-color: var(--primary-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.site-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.site-logo i {
    margin-right: 8px;
}

.form-fields {
    padding: 30px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-field label i {
    margin-right: 8px;
}

.input-mockup {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.btn-register {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    font-size: 1.1rem;
}

.form-footer {
    text-align: center;
    padding: 0 30px 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.login-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.register-benefits {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding: 0 10px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.benefit p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Media Queries for Login & Registration Section */
@media (max-width: 992px) {
    .login-register-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .login-info,
    .register-form-container {
        max-width: 100%;
    }

    .register-mockup {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .login-register-section {
        padding: 70px 0;
    }

    .login-step {
        padding: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .login-features {
        gap: 20px;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .login-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 15px;
    }

    .login-features {
        justify-content: space-between;
    }

    .feature-item {
        flex: 1;
    }

    .feature-item i {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .form-fields {
        padding: 20px;
    }

    .btn-register {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
    }

    .form-footer {
        padding: 0 20px 20px;
    }

    .register-benefits {
        flex-wrap: wrap;
        gap: 15px;
    }

    .benefit {
        width: 30%;
    }
}

/* Popular Games Section */
.popular-games-section {
    padding: 90px 0;
    background-color: var(--dark-bg-secondary);
    position: relative;
    overflow: hidden;
}

.games-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(25, 25, 25, 0.8) 1px, transparent 1px), linear-gradient(to bottom, rgba(25, 25, 25, 0.8) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 1;
}

.popular-games-section .container {
    position: relative;
    z-index: 2;
}

/* Game Category Tabs */
.games-categories-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

.tab {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.tab.active {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-color: var(--primary-color);
}

/* Games Showcase */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-item {
    background: linear-gradient(145deg, #232730, #1a1d24);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Game Thumbnail */
.game-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-item:hover .game-img {
    transform: scale(1.1);
}

.game-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-color);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.hot-tag,
.new-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.hot-tag {
    background-color: #FF4E50;
    color: white;
}

.new-tag {
    background-color: #36D7B7;
    color: #1A1A1A;
}

/* Game Overlay */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
}

.btn-play-now,
.btn-demo {
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-play-now {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-play-now:hover {
    background-color: var(--btn-hover);
}

.btn-demo {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-demo:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Game Info */
.game-info {
    padding: 15px;
}

.game-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.game-rating span {
    color: var(--text-secondary);
    margin-left: 4px;
}

.game-type {
    display: flex;
    gap: 5px;
}

.badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.slot {
    background-color: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.badge.table {
    background-color: rgba(0, 123, 255, 0.2);
    color: #0D6EFD;
}

.badge.live {
    background-color: rgba(220, 53, 69, 0.2);
    color: #DC3545;
}

.badge.arcade {
    background-color: rgba(23, 162, 184, 0.2);
    color: #17A2B8;
}

/* View More Button */
.games-more-btn {
    text-align: center;
    margin: 30px 0 50px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Providers Section */
.providers-section {
    margin-top: 70px;
    text-align: center;
}

.providers-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.providers-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.providers-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.provider-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.provider-logo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.provider-logo i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.provider-logo span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Media Queries */
@media (max-width: 992px) {
    .games-showcase {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .providers-logos {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .popular-games-section {
        padding: 70px 0;
    }

    .games-categories-tabs {
        gap: 10px;
    }

    .tab {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .games-showcase {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .game-thumb {
        height: 180px;
    }

    .providers-logos {
        gap: 15px;
    }

    .provider-logo {
        padding: 12px 20px;
    }

    .provider-logo i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .games-categories-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 30px 0;
    }

    .tab {
        flex-shrink: 0;
    }

    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .game-thumb {
        height: 150px;
    }

    .game-title {
        font-size: 1rem;
    }

    .game-rating {
        font-size: 0.75rem;
    }

    .btn-outline {
        padding: 10px 25px;
    }

    .providers-logos {
        gap: 10px;
    }

    .provider-logo {
        padding: 10px 15px;
    }

    .provider-logo i {
        font-size: 1.3rem;
    }

    .provider-logo span {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .games-showcase {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto 40px;
    }

    .game-thumb {
        height: 180px;
    }
}

/* Security & Trust Section */
.security-section {
    padding: 90px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.security-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.security-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(145, 70, 255, 0.05);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 215, 0, 0.03);
    bottom: -100px;
    left: -100px;
}

.security-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.security-section .container {
    position: relative;
    z-index: 2;
}

/* Security Content Layout */
.security-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
}

.security-video {
    flex: 1;
    min-width: 300px;
}

.security-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Video Section */
.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 300px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(145, 70, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.play-button i {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 5px;
    /* Adjust for optical centering of play icon */
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-color);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badge i {
    font-size: 1.1rem;
}

/* Security Features */
.security-feature-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(145deg, #232730, #1a1d24);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.security-feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #7030a0);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Certifications Section */
.security-certifications {
    margin-top: 60px;
    text-align: center;
}

.cert-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.cert-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.cert-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.cert-logo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.cert-logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.cert-logo span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 60px;
}

.testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(145deg, #232730, #1a1d24);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 1.8rem;
    color: rgba(145, 70, 255, 0.3);
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
}

.author-avatar i {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-secure {
    margin-top: 70px;
    background: linear-gradient(145deg, rgba(44, 47, 54, 0.8), rgba(33, 36, 43, 0.8));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-secure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/0011_2_a-photo-of-two-very-sexy-asian-women-wit_9dSEEFDnSJysJlwzRN7-wg_UQUvOxqZTfy8ZIacMvSOIA.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn i {
    font-size: 1.2rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .security-content {
        flex-direction: column;
        gap: 40px;
    }

    .video-wrapper {
        min-height: 250px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial {
        max-width: 100%;
    }

    .cert-logos {
        gap: 20px;
    }

    .cert-logo {
        min-width: 130px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 70px 0;
    }

    .security-feature-item {
        padding: 20px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .cert-title,
    .testimonials-title {
        font-size: 1.3rem;
    }

    .cta-secure {
        padding: 30px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .security-feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .cert-logos {
        gap: 15px;
    }

    .cert-logo {
        padding: 15px;
        min-width: 120px;
    }

    .cert-logo i {
        font-size: 1.6rem;
    }

    .cert-logo span {
        font-size: 0.8rem;
    }

    .testimonial {
        padding: 25px 20px;
    }

    .cta-secure {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}