/* ===== Header Styles ===== */
.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-buttons {
    display: flex;
    margin-left: 15px;
    gap: 10px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: var(--darker-bg);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-column {
    flex: 1;
    min-width: 150px;
}

.footer-links-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info p i {
    color: var(--primary-color);
    margin-right: 8px;
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transform: translateY(-3px);
}

.footer-middle {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.responsible-gaming {
    flex: 1;
    min-width: 280px;
}

.responsible-gaming h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.responsible-gaming p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.age-restriction i {
    color: #ff5252;
    font-size: 18px;
}

.age-restriction span {
    color: #ff5252;
    font-size: 14px;
    font-weight: 600;
}

.payment-methods {
    flex: 1;
    min-width: 280px;
}

.payment-methods h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 20px;
    border: 1px solid var(--border-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.disclaimer {
    color: var(--text-secondary);
    font-size: 12px;
}

/* ===== Sticky Buttons ===== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.sticky-btn:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.sticky-btn i {
    font-size: 18px;
    margin-bottom: 5px;
}

.sticky-btn span {
    white-space: nowrap;
}

.sticky-btn:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.sticky-btn:nth-child(2) {
    color: white;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.sticky-btn:nth-child(2):hover {
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
}

/* Main content padding to account for fixed header and sticky footer */
main {
    padding-top: 70px;
    /* Height of the header */
    padding-bottom: 60px;
    /* Height of the sticky buttons */
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--darker-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 15px;
        width: 100%;
        text-align: left;
        border-radius: 5px;
        font-size: 14px;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .nav-buttons .btn {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-top,
    .footer-middle {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        flex: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-tagline {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links,
    .footer-contact {
        flex: 100%;
    }

    .footer-links-column h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column {
        flex: 1;
        min-width: 130px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }

    .responsible-gaming,
    .payment-methods {
        flex: 100%;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .age-restriction {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .sticky-btn {
        padding: 10px 5px;
        font-size: 10px;
    }

    .sticky-btn i {
        font-size: 16px;
    }

    main {
        padding-bottom: 55px;
        /* Adjust for smaller sticky buttons */
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-column {
        min-width: 100%;
    }

    .site-footer {
        padding-top: 40px;
    }
}

/* Base Styles for Dark Mode */
:root {
    --primary-color: #ff9500;
    --secondary-color: #6b22fe;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --dark-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --gradient-start: #6b22fe;
    --gradient-end: #a155ff;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    margin-top: 0;
    line-height: 1.3;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section Styles */
.hero-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 34, 254, 0.1), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(107, 34, 254, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 149, 0, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(to right, var(--primary-color), #ffb700);
    color: var(--darker-bg);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.hero-badge i {
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background-color: var(--dark-card);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 20px;
    color: var(--primary-color);
}

.feature span {
    font-weight: 600;
    font-size: 16px;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
        flex: 1;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-image {
        flex: 1;
    }

    .feature {
        min-width: 160px;
    }
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .hero-section {
        padding: 80px 20px 60px;
    }
}

@media (max-width: 767px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature {
        min-width: auto;
        padding: 12px 15px;
    }
}

/* Casino Games Section Styles */
.games-section {
    background-color: var(--dark-bg);
    padding: 60px 20px;
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(107, 34, 254, 0.15), transparent 50%);
    z-index: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    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(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Games Introduction */
.games-intro {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.intro-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.intro-image {
    flex: 1;
    max-width: 500px;
}

.intro-image img {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.intro-image img:hover {
    transform: scale(1.02);
}

/* Game Categories Cards */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.game-card {
    background: linear-gradient(145deg, var(--dark-card), #232323);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(107, 34, 254, 0.3);
}

.game-icon i {
    font-size: 30px;
    color: white;
}

.game-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.game-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    min-height: 72px;
}

.game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.game-btn i {
    margin-right: 8px;
}

.game-btn:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

/* CTA Container */
.cta-container {
    background: linear-gradient(170deg, rgba(107, 34, 254, 0.2), rgba(30, 30, 30, 0.9));
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(107, 34, 254, 0.3);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.7;
}

.cta-content strong {
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 32px;
    color: var(--gradient-start);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.feature-item strong {
    color: var(--primary-color);
}

/* Media Queries */
@media (min-width: 768px) {
    .games-intro {
        flex-direction: row;
    }

    .section-header h2 {
        font-size: 42px;
    }

    .game-card p {
        min-height: 96px;
    }
}

@media (min-width: 992px) {
    .games-section {
        padding: 80px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 30px;
    }

    .game-card {
        padding: 25px 20px;
    }

    .game-icon {
        width: 60px;
        height: 60px;
    }

    .game-icon i {
        font-size: 24px;
    }

    .cta-container {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 26px;
    }

    .games-categories {
        grid-template-columns: 1fr;
    }

    .game-card p {
        min-height: auto;
    }

    .cta-content h3 {
        font-size: 22px;
    }

    .feature-item {
        padding: 20px;
    }
}

/* Wallet System Section Styles */
.wallet-section {
    background-color: var(--darker-bg);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.wallet-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 149, 0, 0.1), transparent 60%);
    z-index: 1;
}

/* Wallet Showcase */
.wallet-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.wallet-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-device {
    position: relative;
    max-width: 400px;
    perspective: 1000px;
}

.wallet-device img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    transform: rotateY(10deg);
    transition: transform 0.5s ease;
}

.wallet-device:hover img {
    transform: rotateY(0deg);
}

.wallet-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: floatAnimation 4s infinite ease-in-out;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 40%;
    right: -20px;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: -15px;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: -10px;
    animation-delay: 3s;
}

.floating-icon i {
    color: white;
    font-size: 16px;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wallet-info {
    flex: 1;
}

.wallet-feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.wallet-feature-item {
    display: flex;
    gap: 20px;
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.wallet-feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 20px;
    color: white;
}

.feature-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.feature-details p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.feature-details strong {
    color: var(--primary-color);
}

.wallet-cta {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Wallet Benefits */
.wallet-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.benefit-card {
    background: linear-gradient(145deg, #1c1c1c, #242424);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), darkorange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.2);
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.5), rgba(255, 255, 255, 0.1));
    z-index: -1;
    opacity: 0.5;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.benefit-card strong {
    color: var(--primary-color);
}

/* Wallet Experience */
.wallet-experience {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    background: linear-gradient(170deg, rgba(107, 34, 254, 0.1), rgba(30, 30, 30, 0.7));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(107, 34, 254, 0.2);
}

.experience-text {
    flex: 1;
}

.experience-text h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.experience-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.experience-text strong {
    color: var(--primary-color);
}

.experience-text .btn {
    margin-top: 20px;
}

.experience-steps {
    flex: 1;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.step-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Media Queries */
@media (min-width: 768px) {
    .wallet-showcase {
        flex-direction: row;
        align-items: center;
    }

    .wallet-experience {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (min-width: 992px) {
    .wallet-section {
        padding: 80px 20px;
    }

    .wallet-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .wallet-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wallet-device {
        max-width: 300px;
    }

    .wallet-feature-item {
        padding: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .wallet-experience {
        padding: 30px 20px;
    }

    .experience-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .wallet-benefits {
        grid-template-columns: 1fr;
    }

    .feature-icon {
        min-width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 16px;
    }

    .feature-details h3 {
        font-size: 18px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .step {
        padding: 12px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Promotions Section Styles */
.promotions-section {
    background-color: var(--dark-bg);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 80%, rgba(255, 149, 0, 0.1), transparent 40%), radial-gradient(circle at 90% 30%, rgba(107, 34, 254, 0.15), transparent 50%);
    z-index: 1;
}

/* Promo Spotlight */
.promo-spotlight {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.spotlight-content {
    flex: 1;
    position: relative;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), #ffb700);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 149, 0, 0.3);
}

.promo-badge i {
    margin-right: 5px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spotlight-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.spotlight-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.spotlight-content strong {
    color: var(--primary-color);
}

.promo-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.promo-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 16px;
}

.promo-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.spotlight-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.promo-card {
    width: 100%;
    max-width: 350px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid var(--border-color);
}

.promo-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.card-header {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    padding: 15px;
    text-align: center;
}

.card-header span {
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 30px;
    text-align: center;
}

.bonus-amount {
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(255, 149, 0, 0.3);
    position: relative;
    display: inline-block;
}

.bonus-amount span {
    font-size: 40px;
    position: absolute;
    top: 10px;
    right: -30px;
}

.card-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.card-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 20px 0;
}

.bonus-code {
    background-color: rgba(107, 34, 254, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px dashed rgba(107, 34, 254, 0.5);
}

/* Promotions Grid */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.promo-item {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.promo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.promo-item:hover::after {
    opacity: 1;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(107, 34, 254, 0.2);
}

.promo-icon i {
    font-size: 24px;
    color: white;
}

.promo-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.promo-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 96px;
}

.promo-item strong {
    color: var(--primary-color);
}

.promo-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-btn i {
    transition: transform 0.3s ease;
}

.promo-btn:hover {
    background-color: rgba(255, 149, 0, 0.1);
}

.promo-btn:hover i {
    transform: translateX(5px);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(170deg, rgba(107, 34, 254, 0.2), rgba(30, 30, 30, 0.9));
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(107, 34, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('0043_1_a-photo-of-a-very-sexy-asian-woman-with-_DRAIa5CCQHqDv5Je3riASw_ElaoEKL-Qy-_KOh59MhuOQ.webp') no-repeat;
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.banner-content h3 i {
    margin-right: 10px;
}

.banner-content p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.7;
}

.banner-content strong {
    color: var(--primary-color);
}

.banner-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.point {
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.point-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.point-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Promo Footer */
.promo-footer {
    margin-top: 60px;
    text-align: center;
}

.footer-text {
    max-width: 800px;
    margin: 0 auto 30px;
}

.footer-text h3 {
    font-size: 26px;
    color: white;
    margin-bottom: 20px;
}

.footer-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.footer-text strong {
    color: var(--primary-color);
}

/* Media Queries */
@media (min-width: 768px) {
    .promo-spotlight {
        flex-direction: row;
        align-items: center;
    }

    .promotions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .promotions-section {
        padding: 80px 20px;
    }

    .spotlight-content h3 {
        font-size: 36px;
    }

    .promo-banner {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-item p {
        min-height: 120px;
    }
}

@media (max-width: 767px) {
    .spotlight-content h3 {
        font-size: 26px;
    }

    .bonus-amount {
        font-size: 70px;
    }

    .bonus-amount span {
        font-size: 30px;
        right: -20px;
    }

    .promo-banner {
        padding: 30px 20px;
    }

    .banner-content h3 {
        font-size: 24px;
    }

    .point {
        min-width: 140px;
        padding: 15px;
    }

    .point-value {
        font-size: 30px;
    }

    .footer-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promo-item p {
        min-height: auto;
    }

    .banner-points {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .point {
        width: 100%;
        max-width: 200px;
    }
}

/* Security Section Styles */
.security-section {
    background-color: var(--darker-bg);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(107, 34, 254, 0.08), transparent 40%), radial-gradient(circle at 70% 80%, rgba(255, 149, 0, 0.08), transparent 40%);
    z-index: 1;
}

/* Security Showcase */
.security-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.security-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.security-shield {
    width: 220px;
    height: 260px;
    background: linear-gradient(145deg, #232323, #1a1a1a);
    border-radius: 110px 110px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 -5px 15px rgba(255, 255, 255, 0.05), inset 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.security-shield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(107, 34, 254, 0.2), transparent 60%), radial-gradient(circle at 50% 80%, rgba(255, 149, 0, 0.1), transparent 40%);
    z-index: 1;
}

.security-shield i {
    font-size: 100px;
    color: var(--primary-color);
    z-index: 2;
    animation: pulse-security 2s infinite;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-start));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

@keyframes pulse-security {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.security-badge {
    position: absolute;
    bottom: 25px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.security-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.element {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.element:hover {
    transform: translateY(-5px);
}

.element i {
    font-size: 24px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-start));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.security-info {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--dark-card);
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 20px;
    color: white;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.info-content strong {
    color: var(--primary-color);
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.feature-box {
    background: linear-gradient(145deg, #191919, #232323);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transition: width 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-box:hover::before {
    width: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.feature-icon i {
    font-size: 30px;
    color: var(--darker-bg);
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.feature-box strong {
    color: var(--primary-color);
}

/* Security Certificates */
.security-certificates {
    background: linear-gradient(170deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.8));
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    text-align: center;
}

.security-certificates h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
}

.certificate-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.certificate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    min-width: 140px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.certificate:hover {
    transform: translateY(-5px);
}

.certificate i {
    font-size: 30px;
    color: var(--primary-color);
}

.certificate span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Trust Testimonial */
.trust-testimonial {
    margin-top: 60px;
}

.testimonial-container {
    position: relative;
    background: linear-gradient(170deg, rgba(107, 34, 254, 0.1), rgba(30, 30, 30, 0.7));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(107, 34, 254, 0.2);
    text-align: center;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(107, 34, 254, 0.3);
}

.testimonial-quote i {
    font-size: 20px;
    color: white;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin: 20px 0 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-text strong {
    color: var(--primary-color);
}

.testimonial-actions {
    margin-top: 30px;
}

/* Media Queries */
@media (min-width: 768px) {
    .security-showcase {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .security-section {
        padding: 80px 20px;
    }

    .security-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificate-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .security-shield {
        width: 180px;
        height: 220px;
    }

    .security-shield i {
        font-size: 80px;
    }

    .element {
        width: 50px;
        height: 50px;
    }

    .element i {
        font-size: 20px;
    }

    .info-item {
        padding: 15px;
    }

    .feature-box {
        padding: 25px 20px;
    }

    .security-certificates {
        padding: 30px 20px;
    }

    .certificate {
        min-width: 120px;
        padding: 15px;
    }

    .testimonial-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .security-features {
        grid-template-columns: 1fr;
    }

    .certificate-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .security-shield i {
        font-size: 70px;
    }

    .security-elements {
        gap: 15px;
    }

    .info-icon {
        min-width: 40px;
        height: 40px;
    }

    .info-icon i {
        font-size: 16px;
    }

    .info-content h3 {
        font-size: 18px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 24px;
    }
}

/* Mobile Accessibility Section Styles */
.mobile-section {
    background-color: var(--dark-bg);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.mobile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(107, 34, 254, 0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 149, 0, 0.1), transparent 40%);
    z-index: 1;
}

/* Devices Showcase */
.devices-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.devices-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.device-mockups {
    position: relative;
    height: 350px;
    width: 100%;
    max-width: 600px;
}

.device {
    position: absolute;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.5s ease;
}

.device.desktop {
    width: 70%;
    height: 220px;
    left: 15%;
    top: 0;
    z-index: 1;
    border: 8px solid #333;
    border-radius: 10px;
}

.device.mobile {
    width: 25%;
    height: 200px;
    right: 10%;
    bottom: 20px;
    z-index: 3;
    border: 6px solid #333;
    border-radius: 15px;
}

.device.tablet {
    width: 40%;
    height: 240px;
    left: 5%;
    bottom: 0;
    z-index: 2;
    border: 8px solid #444;
    border-radius: 12px;
}

.device-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.device:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.devices-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
}

.card-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 20px;
    color: white;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.card-content strong {
    color: var(--primary-color);
}

/* Game Types */
.game-types {
    margin: 60px 0;
    background: linear-gradient(170deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.type-header {
    text-align: center;
    margin-bottom: 40px;
}

.type-header h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.type-header p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

.type-header strong {
    color: var(--primary-color);
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.type-card {
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(50, 50, 50, 0.7);
}

.type-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.2);
}

.type-icon i {
    font-size: 24px;
    color: var(--darker-bg);
}

.type-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.type-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.type-card strong {
    color: var(--primary-color);
}

/* Mobile App */
.mobile-app {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(170deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
}

.app-info {
    flex: 1;
}

.app-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.app-info p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.app-info strong {
    color: var(--primary-color);
}

.app-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.app-features li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 15px;
}

.app-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: #222;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.app-btn i {
    font-size: 20px;
    margin-right: 10px;
}

.app-btn:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.app-qrcode {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrcode-container {
    text-align: center;
}

.qrcode-frame {
    width: 150px;
    height: 150px;
    background-color: white;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qrcode-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: url('0130_4_a-photo-of-three-very-sexy-asian-women-w_n6T3qBNiSyyMDgp48UoDLA_DWpU1tj9Si2glsTSMBNILA_cover.webp') center/cover;
    opacity: 0.8;
}

.qrcode-container p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Bonus Try */
.bonus-try {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.bonus-content {
    display: flex;
    gap: 30px;
    background: linear-gradient(170deg, rgba(107, 34, 254, 0.2), rgba(30, 30, 30, 0.9));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(107, 34, 254, 0.3);
    align-items: center;
}

.bonus-icon {
    min-width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(107, 34, 254, 0.3);
}

.bonus-icon i {
    font-size: 40px;
    color: white;
    animation: pulse-gift 2s infinite;
}

@keyframes pulse-gift {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.bonus-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bonus-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.bonus-info strong {
    color: var(--primary-color);
}

/* Conclusion */
.conclusion {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.conclusion h3 {
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
}

.conclusion p {
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.7;
}

.conclusion strong {
    color: var(--primary-color);
}

.conclusion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Media Queries */
@media (min-width: 768px) {
    .devices-showcase {
        flex-direction: row;
        align-items: center;
    }

    .app-content {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .mobile-section {
        padding: 80px 20px;
    }

    .type-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .device-mockups {
        height: 300px;
    }

    .type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .device-mockups {
        height: 280px;
    }

    .device.desktop {
        width: 75%;
        height: 180px;
        left: 12.5%;
    }

    .device.mobile {
        width: 28%;
        height: 180px;
        right: 5%;
    }

    .device.tablet {
        width: 45%;
        height: 200px;
    }

    .info-card {
        padding: 20px;
    }

    .game-types {
        padding: 30px 20px;
    }

    .type-header h3 {
        font-size: 24px;
    }

    .app-content {
        padding: 30px 20px;
    }

    .app-info h3 {
        font-size: 24px;
    }

    .bonus-content {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .bonus-icon {
        margin: 0 auto;
    }

    .conclusion h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .device-mockups {
        height: 250px;
    }

    .device.desktop {
        width: 80%;
        height: 150px;
        left: 10%;
    }

    .device.mobile {
        width: 30%;
        height: 150px;
    }

    .device.tablet {
        width: 48%;
        height: 180px;
    }

    .card-icon {
        min-width: 40px;
        height: 40px;
    }

    .card-icon i {
        font-size: 18px;
    }

    .type-grid {
        grid-template-columns: 1fr;
    }

    .type-icon {
        width: 50px;
        height: 50px;
    }

    .type-icon i {
        font-size: 20px;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .app-buttons {
        flex-direction: column;
    }

    .app-qrcode {
        margin-top: 20px;
    }

    .bonus-icon {
        min-width: 80px;
        height: 80px;
    }

    .bonus-icon i {
        font-size: 30px;
    }
}