/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
    position: relative;
}

.logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-speed) ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-primary) !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.25);
    transition: all var(--transition-speed) ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--darker-bg);
    z-index: 1001;
    overflow-y: auto;
    transition: right var(--transition-speed) ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--card-bg);
}

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-logo .highlight {
    color: var(--primary-color);
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-speed) ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.mobile-nav-menu li a i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.mobile-cta {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
}

.mobile-cta:hover {
    background: var(--gradient-secondary) !important;
    color: var(--text-primary) !important;
}

.mobile-cta i {
    color: var(--text-primary) !important;
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    color: var(--text-secondary);
    position: relative;
    padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 70px) 0;
    /* Extra padding at bottom for sticky buttons */
    border-top: 1px solid var(--border-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23222222' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.footer-branding {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-text .highlight {
    color: var(--primary-color);
    position: relative;
}

.footer-logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.footer-links-column {
    flex: 1;
    min-width: 160px;
}

.footer-links-column h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-links-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links-column ul li a::before {
    content: '›';
    margin-right: 5px;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-speed) ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-links-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
}

.footer-bottom-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.divider {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.disclaimer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--border-color);
}

.sticky-btn {
    flex: 1;
    padding: 15px 10px;
    text-align: center;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
}

.sticky-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.sticky-btn i {
    font-size: 1.1rem;
}

.sticky-btn.primary {
    background: var(--gradient-primary);
}

.sticky-btn.primary:hover {
    filter: brightness(1.1);
}

.sticky-btn.secondary {
    background: var(--gradient-secondary);
}

.sticky-btn.secondary:hover {
    filter: brightness(1.1);
}

/* Adjust main content to account for fixed header */
main {
    padding-top: 80px;
    /* Equal to header height + extra spacing */
}

/* Media Queries for Header, Footer, and Sticky Buttons */
@media (max-width: 1024px) {
    .nav-menu li a {
        font-size: 0.9rem;
    }

    .logo-text,
    .footer-logo-text {
        font-size: 1.6rem;
    }

    .footer-content {
        gap: var(--spacing-lg);
    }

    .footer-links {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 830px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-text,
    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-branding {
        flex: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        flex: 100%;
        justify-content: space-between;
    }

    .footer-links-column {
        flex: 0 0 calc(50% - var(--spacing-md));
    }

    .footer-links-column h4::after {
        left: 0;
        transform: none;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .logo-text,
    .footer-logo-text {
        font-size: 1.3rem;
    }

    .sticky-btn {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .sticky-btn i {
        font-size: 1rem;
    }

    .footer-links-column {
        flex: 0 0 100%;
    }

    .footer-links-column h4 {
        display: block;
        text-align: center;
    }

    .footer-links-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column ul {
        text-align: center;
    }

    .footer-links-column ul li a {
        justify-content: center;
    }

    .footer-links-column ul li a::before {
        display: none;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .divider {
        display: none;
    }
}

/* Base Theme Styles */
:root {
    /* Dark theme color palette */
    --primary-color: #ff6b00;
    --secondary-color: #9d00ff;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #ff6b00, #ff9500);
    --gradient-secondary: linear-gradient(135deg, #9d00ff, #f100ff);
    --success-color: #00c853;
    --container-width: 1280px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition-speed: 0.3s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    border: none;
    font-family: 'Prompt', sans-serif;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
    color: var(--text-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(157, 0, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(157, 0, 255, 0.4);
    color: var(--text-primary);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 12px 30px var(--shadow-color);
    transform: perspective(800px) rotateY(-5deg);
    transition: transform var(--transition-speed) ease;
}

.hero-img:hover {
    transform: perspective(800px) rotateY(0deg);
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    background: var(--card-bg);
    width: 60px;
    height: 60px;
    box-shadow: 0 8px 16px var(--shadow-color);
}

.slot-icon {
    top: 20%;
    left: -10%;
    color: var(--primary-color);
    animation-delay: 0s;
}

.card-icon {
    top: 60%;
    right: -5%;
    color: var(--secondary-color);
    animation-delay: 1s;
}

.coin-icon {
    bottom: 10%;
    left: 10%;
    color: var(--success-color);
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 100%;
        text-align: center;
    }

    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        transform: none;
        margin: 0 auto;
    }

    .hero-img:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* About SuperFlik Section Styles */
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--darker-bg);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: 0 auto;
    width: 60%;
}

.section-divider span {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    flex-grow: 1;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-content {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-image {
    flex: 0.8;
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.trust-indicator {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background-color: var(--card-bg);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.trust-indicator.warning {
    color: #ffcc00;
}

.trust-indicator.warning i {
    font-size: 1.2rem;
}

.website-comparison {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.comparison-card {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.card-header.unreliable {
    background: linear-gradient(135deg, #ff4747, #ff704d);
}

.card-header.reliable {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.card-header i {
    font-size: 1.4rem;
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
    padding: var(--spacing-md);
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
}

.comparison-list li i {
    font-size: 1.1rem;
}

.comparison-list li i.fa-times-circle {
    color: #ff4747;
}

.comparison-list li i.fa-check-circle {
    color: #00b09b;
}

.comparison-list li i.fa-question-circle {
    color: #ffc107;
}

.safety-tips {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.safety-tips h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-size: 1.4rem;
    text-align: center;
}

.tips-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.tips-list li:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.08);
}

.tips-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-container {
    text-align: center;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Media Queries for About Section */
@media (max-width: 1024px) {
    .section-divider {
        width: 80%;
    }

    .about-content {
        flex-direction: column-reverse;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-image {
        margin-bottom: var(--spacing-lg);
    }

    .trust-indicator {
        bottom: -15px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .website-comparison {
        flex-direction: column;
    }

    .comparison-card {
        width: 100%;
    }

    .tips-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-divider {
        width: 100%;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .safety-tips {
        padding: var(--spacing-md);
    }

    .safety-tips h3 {
        font-size: 1.3rem;
    }
}

/* Gambling Risks Section Styles */
.gambling-risks-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-bg);
    position: relative;
}

.gambling-risks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.risks-content {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.risks-image {
    flex: 0.8;
    position: relative;
}

.risks-img {
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    filter: brightness(0.9) contrast(1.1);
    transition: all var(--transition-speed) ease;
}

.risks-img:hover {
    filter: brightness(1) contrast(1);
    transform: scale(1.02);
}

.game-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(157, 0, 255, 0.3);
    font-weight: 600;
    z-index: 2;
}

.game-badge i {
    font-size: 1.2rem;
}

.risks-text {
    flex: 1.2;
}

.risks-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.risks-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.risks-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all var(--transition-speed) ease;
}

.risks-text a:hover {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.25);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.risks-warning {
    background-color: rgba(255, 71, 71, 0.08);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 71, 71, 0.2);
    margin: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.warning-header {
    background-color: rgba(255, 71, 71, 0.2);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.warning-header i {
    color: #ff4747;
    font-size: 1.4rem;
}

.warning-header h3 {
    margin-bottom: 0;
    color: #ff4747;
    font-size: 1.3rem;
}

.warning-content {
    padding: var(--spacing-lg);
}

.warning-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.warning-content p:last-child {
    margin-bottom: 0;
}

.warning-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Media Queries for Gambling Risks Section */
@media (max-width: 1024px) {
    .risks-content {
        flex-direction: column;
    }

    .risks-image,
    .risks-text {
        width: 100%;
    }

    .game-badge {
        right: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .warning-header {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-sm);
    }

    .warning-content {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .risks-img {
        margin-bottom: var(--spacing-lg);
    }

    .game-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
    position: relative;
}

.logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-speed) ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-primary) !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.25);
    transition: all var(--transition-speed) ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--darker-bg);
    z-index: 1001;
    overflow-y: auto;
    transition: right var(--transition-speed) ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--card-bg);
}

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-logo .highlight {
    color: var(--primary-color);
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-speed) ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.mobile-nav-menu li a i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.mobile-cta {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
}

.mobile-cta:hover {
    background: var(--gradient-secondary) !important;
    color: var(--text-primary) !important;
}

.mobile-cta i {
    color: var(--text-primary) !important;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--border-color);
}

.sticky-btn {
    flex: 1;
    padding: 15px 10px;
    text-align: center;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
}

.sticky-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.sticky-btn i {
    font-size: 1.1rem;
}

.sticky-btn.primary {
    background: var(--gradient-primary);
}

.sticky-btn.primary:hover {
    filter: brightness(1.1);
}

.sticky-btn.secondary {
    background: var(--gradient-secondary);
}

.sticky-btn.secondary:hover {
    filter: brightness(1.1);
}

/* Adjust main content to account for fixed header */
main {
    padding-top: 80px;
    /* Equal to header height + extra spacing */
}

/* Media Queries for Header and Navigation */
@media (max-width: 1024px) {
    .nav-menu li a {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 830px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .sticky-btn {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .sticky-btn i {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    color: var(--text-secondary);
    position: relative;
    padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 70px) 0;
    /* Extra padding at bottom for sticky buttons */
    border-top: 1px solid var(--border-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23222222' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.footer-branding {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-text .highlight {
    color: var(--primary-color);
    position: relative;
}

.footer-logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.footer-links-column {
    flex: 1;
    min-width: 160px;
}

.footer-links-column h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-links-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links-column ul li a::before {
    content: '›';
    margin-right: 5px;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-speed) ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-links-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
}

.footer-bottom-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.divider {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.disclaimer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* Media Queries for Footer */
@media (max-width: 1024px) {
    .footer-content {
        gap: var(--spacing-lg);
    }

    .footer-links {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .footer-branding {
        flex: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        flex: 100%;
        justify-content: space-between;
    }

    .footer-links-column {
        flex: 0 0 calc(50% - var(--spacing-md));
    }

    .footer-links-column h4::after {
        left: 0;
        transform: none;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links-column {
        flex: 0 0 100%;
    }

    .footer-links-column h4 {
        display: block;
        text-align: center;
    }

    .footer-links-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column ul {
        text-align: center;
    }

    .footer-links-column ul li a {
        justify-content: center;
    }

    .footer-links-column ul li a::before {
        display: none;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .divider {
        display: none;
    }
}

/* Games & Features Section Styles */
.games-features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-bg);
    position: relative;
}

.games-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(157, 0, 255, 0.1), transparent 70%), radial-gradient(circle at bottom left, rgba(255, 107, 0, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.game-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.play-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.5);
    color: var(--text-primary);
}

.game-card:hover .play-btn {
    transform: translateY(0);
}

.game-card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    align-self: flex-start;
}

.game-badge.slot {
    background-color: rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
}

.game-badge.baccarat {
    background-color: rgba(157, 0, 255, 0.2);
    color: var(--secondary-color);
}

.game-badge.fish {
    background-color: rgba(0, 200, 83, 0.2);
    color: var(--success-color);
}

.game-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.game-card-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.game-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-features span i {
    color: var(--success-color);
    font-size: 0.95rem;
}

.platform-features {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.platform-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.platform-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.platform-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.feature-details h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.feature-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-banner {
    margin-top: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(157, 0, 255, 0.1));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-button {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    z-index: 1;
}

.floating-chip {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: float 6s infinite ease-in-out;
}

.floating-chip i {
    font-size: 1.5rem;
}

.chip-1 {
    top: 20%;
    right: 30%;
    animation-delay: 0s;
}

.chip-1 i {
    color: var(--primary-color);
}

.chip-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.chip-2 i {
    color: var(--secondary-color);
}

.chip-3 {
    top: 70%;
    right: 25%;
    animation-delay: 2s;
}

.chip-3 i {
    color: var(--success-color);
}

/* Media Queries for Games & Features Section */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .cta-decoration {
        width: 150px;
    }

    .floating-chip {
        width: 50px;
        height: 50px;
    }

    .floating-chip i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .platform-features {
        padding: var(--spacing-lg);
    }

    .cta-banner {
        padding: var(--spacing-lg);
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .game-card-image {
        aspect-ratio: 4 / 3;
    }

    .platform-header h3 {
        font-size: 1.5rem;
    }

    .platform-header p {
        font-size: 1rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto var(--spacing-sm);
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }

    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}