/* Header Styles */
.site-header {
    background-color: var(--darker-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.domain-suffix {
    font-family: 'Prompt', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.6rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.search-toggle:hover {
    color: var(--primary-color);
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    display: none;
}

.search-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form input {
    flex-grow: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: var(--light-text);
    font-family: 'Sarabun', sans-serif;
    outline: none;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form button {
    padding: 10px 15px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    filter: brightness(1.1);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-login {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-register {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.2);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 71, 87, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 20px;
    justify-content: space-between;
}

.bar {
    height: 3px;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: var(--transition);
}

/* Main Navigation */
.main-navigation {
    padding: 0;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    position: relative;
}

.menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.menu a:hover,
.menu a.active {
    color: var(--light-text);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.dropdown-icon {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.menu li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: var(--card-bg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 20px;
}

.dropdown-menu a::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--darker-bg);
    z-index: 1001;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 8px;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--gray-text);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-icon {
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    padding-left: 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-menu-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-btn {
    text-align: center;
    padding: 12px;
    justify-content: center;
}

/* Helper animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries for Header */
@media (max-width: 1100px) {
    .menu a {
        padding: 15px 15px;
    }
}

@media (max-width: 992px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-search {
        display: none;
    }
}

@media (max-width: 576px) {

    .site-logo,
    .domain-suffix {
        font-size: 1.4rem;
    }

    .header-buttons .btn span {
        display: none;
    }

    .header-buttons .btn {
        padding: 8px 10px;
    }

    .header-buttons .btn i {
        font-size: 1.2rem;
    }

    .mobile-menu {
        width: 250px;
    }
}

/* Adjust main content padding to account for fixed header */
body {
    padding-top: 110px;
    /* Adjust based on header height */
}

@media (max-width: 992px) {
    body {
        padding-top: 70px;
        /* Adjust for smaller header on mobile */
    }
}

/* Footer Section */
.site-footer {
    background-color: var(--darker-bg);
    color: var(--gray-text);
    position: relative;
}

.footer-main {
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 90% 10%, rgba(83, 82, 237, 0.05) 0%, transparent 50%), radial-gradient(circle at 10% 90%, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.site-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-domain {
    color: var(--secondary-color);
}

.footer-description {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-methods h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
}

.payment-icons i {
    color: var(--gray-text);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--light-text);
}

.footer-title {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-text);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-text);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-social h4 {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--gray-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--light-text);
    transform: translateY(-5px);
}

.social-links a:nth-child(1):hover {
    background-color: #06C755;
}

.social-links a:nth-child(2):hover {
    background-color: #1877F2;
}

.social-links a:nth-child(3):hover {
    background-color: #1DA1F2;
}

.social-links a:nth-child(4):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a:nth-child(5):hover {
    background-color: #FF0000;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(83, 82, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.responsible-content h4 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.responsible-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-text);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 100;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Prompt', sans-serif;
}

.login-btn {
    background-color: var(--card-bg);
    color: var(--light-text);
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.register-btn {
    background: var(--gradient-primary);
    color: white;
}

.register-btn:hover {
    filter: brightness(1.1);
}

.bonus-btn {
    background: var(--gradient-secondary);
    color: white;
}

.bonus-btn:hover {
    filter: brightness(1.1);
}

/* Media Queries for Footer and Sticky Buttons */
@media (max-width: 1100px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .responsible-gaming {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .responsible-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .brand-column {
        grid-column: span 1;
    }

    .footer-logo {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-social h4 {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .sticky-btn {
        padding: 12px 5px;
        font-size: 0.8rem;
    }

    .sticky-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 375px) {
    .sticky-btn span {
        display: none;
    }

    .sticky-btn i {
        font-size: 1.3rem;
    }

    .sticky-btn {
        padding: 15px 5px;
    }
}

/* Base styles */
:root {
    --primary-color: #ff4757;
    --secondary-color: #5352ed;
    --dark-bg: #0f1923;
    --darker-bg: #070d14;
    --light-text: #f1f1f1;
    --gray-text: #a0a0a0;
    --card-bg: #182430;
    --gradient-primary: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    --gradient-secondary: linear-gradient(135deg, #5352ed 0%, #3742fa 100%);
    --glow-shadow: 0 0 15px rgba(255, 71, 87, 0.5);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    margin-top: 0;
    color: var(--light-text);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
}

.btn-secondary {
    background: rgba(83, 82, 237, 0.1);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: rgba(83, 82, 237, 0.2);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background-color: var(--darker-bg);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(83, 82, 237, 0.2), transparent 60%), radial-gradient(circle at 30% 70%, rgba(255, 71, 87, 0.2), transparent 60%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.hero-img {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
    text-align: center;
    line-height: 1.2;
}

.floating-badge i {
    font-size: 1.5rem;
    margin-bottom: 3px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0 80px;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-image {
        max-width: 100%;
    }

    .floating-badge {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-features {
        justify-content: space-between;
    }

    .feature {
        font-size: 0.85rem;
    }
}

/* Game Categories Section */
.game-categories-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.game-categories-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(83, 82, 237, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 71, 87, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.category-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.featured-card {
    border: 1px solid rgba(255, 71, 87, 0.3);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.1);
}

.card-icon {
    background: rgba(255, 71, 87, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.category-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(255, 71, 87, 0.2);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--light-text);
}

.category-card p {
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    color: var(--light-text);
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
    margin-top: auto;
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover {
    background: rgba(255, 71, 87, 0.1);
    color: var(--primary-color);
}

.card-btn:hover i {
    transform: translateX(5px);
}

.cta-banner {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 71, 87, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.cta-content p {
    color: var(--gray-text);
    margin: 0;
}

/* Media Queries */
@media (max-width: 992px) {
    .game-categories-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-banner {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .game-categories-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .category-card {
        padding: 25px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .category-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .game-categories-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 25px;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }
}

/* Trust & Security Section */
.trust-security-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.trust-security-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(83, 82, 237, 0.05) 0%, transparent 40%), radial-gradient(circle at 90% 90%, rgba(255, 71, 87, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.trust-image {
    flex: 0 0 45%;
    position: relative;
}

.security-img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-secondary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(83, 82, 237, 0.4);
    text-align: center;
    line-height: 1.2;
}

.trust-badge i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.trust-info {
    flex: 1;
}

.trust-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.problems-list {
    margin-bottom: 40px;
}

.problem-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
}

.problem-icon {
    flex: 0 0 50px;
    height: 50px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.problem-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

.problem-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin: 0;
}

.megabet-solution {
    background: rgba(83, 82, 237, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(83, 82, 237, 0.2);
}

.megabet-solution h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.megabet-solution h3 span {
    color: var(--secondary-color);
}

.solution-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.solution-points li:last-child {
    margin-bottom: 0;
}

.solution-points i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.solution-points span {
    color: var(--gray-text);
    flex: 1;
}

.verification-methods {
    margin-top: 80px;
}

.verification-methods h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.verification-methods h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.verify-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.verify-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.verify-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(83, 82, 237, 0.2);
}

.verify-icon {
    width: 60px;
    height: 60px;
    background: rgba(83, 82, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.verify-card:hover .verify-icon {
    transform: scale(1.1);
    background: rgba(83, 82, 237, 0.2);
}

.verify-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.verify-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin: 0;
}

.secure-login-banner {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(83, 82, 237, 0.2);
}

.login-banner-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-banner-content h4 i {
    color: var(--secondary-color);
}

.login-banner-content p {
    color: var(--gray-text);
    margin: 0;
    max-width: 80%;
}

/* Media Queries */
@media (max-width: 1100px) {
    .verify-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .trust-security-section {
        padding: 80px 0;
    }

    .trust-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .trust-image {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .trust-info {
        text-align: center;
    }

    .problem-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .solution-points li {
        justify-content: center;
        text-align: left;
    }

    .secure-login-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .login-banner-content h4 {
        justify-content: center;
    }

    .login-banner-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .trust-security-section {
        padding: 60px 0;
    }

    .verification-methods h3 {
        font-size: 1.6rem;
    }

    .trust-badge {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }

    .trust-badge i {
        font-size: 1.5rem;
    }

    .trust-intro {
        font-size: 1rem;
    }

    .problem-item {
        padding: 15px;
    }

    .megabet-solution {
        padding: 20px;
    }

    .megabet-solution h3 {
        font-size: 1.2rem;
    }

    .verify-grid {
        gap: 15px;
    }

    .verify-card {
        padding: 20px;
    }

    .verify-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .verify-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .verify-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge {
        bottom: -15px;
        right: -15px;
        width: 70px;
        height: 70px;
    }

    .problem-icon {
        flex: 0 0 40px;
        height: 40px;
        font-size: 1rem;
    }

    .problem-content h3 {
        font-size: 1.1rem;
    }

    .secure-login-banner {
        padding: 20px 15px;
    }
}

/* Updates & Login Section */
.updates-login-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.updates-login-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(83, 82, 237, 0.08) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(255, 71, 87, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.updates-login-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Secure Login Card */
.secure-login-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.login-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(83, 82, 237, 0.3);
}

.card-header h3 {
    font-size: 1.6rem;
    color: var(--light-text);
    margin: 0;
}

.secure-steps {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}

.step-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

.step-content p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.login-cta {
    text-align: center;
}

/* Platform Updates */
.platform-updates {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.updates-header {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px 25px;
    border-left: 4px solid var(--primary-color);
}

.updates-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.updates-header h3 i {
    color: var(--primary-color);
}

.updates-list {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.update-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.update-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.update-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 8px;
    min-width: 60px;
    padding: 8px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.update-date .day {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.update-date .month {
    font-size: 0.9rem;
}

.update-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

.update-content p {
    color: var(--gray-text);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.update-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(83, 82, 237, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.warning-alert {
    display: flex;
    gap: 20px;
    background: rgba(255, 71, 87, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.alert-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

.alert-content p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-updates {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-updates h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:nth-child(1):hover {
    background: #06C755;
    color: white;
}

.social-icon:nth-child(2):hover {
    background: #1877F2;
    color: white;
}

.social-icon:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon:nth-child(4):hover {
    background: #0088cc;
    color: white;
}

/* Media Queries */
@media (max-width: 1100px) {
    .updates-login-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .secure-login-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .updates-login-section {
        padding: 70px 0;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .login-icon {
        margin: 0 auto;
    }

    .card-header h3 {
        font-size: 1.4rem;
    }

    .secure-steps {
        margin-bottom: 25px;
    }

    .step-item {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .warning-alert {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .alert-icon {
        margin: 0 auto;
    }

    .updates-header h3 {
        font-size: 1.3rem;
        justify-content: center;
    }

    .updates-list {
        padding: 25px;
    }

    .update-item {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .updates-login-section {
        padding: 60px 0;
    }

    .secure-login-card {
        padding: 25px 20px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .updates-list {
        padding: 20px;
    }

    .update-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .update-date {
        flex-direction: row;
        gap: 5px;
        padding: 5px 10px;
        min-width: auto;
    }

    .update-date .day {
        font-size: 1.1rem;
    }

    .update-date .month {
        font-size: 0.8rem;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

/* Footer Section */
.site-footer {
    background-color: var(--darker-bg);
    color: var(--gray-text);
    position: relative;
}

.footer-main {
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 90% 10%, rgba(83, 82, 237, 0.05) 0%, transparent 50%), radial-gradient(circle at 10% 90%, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.site-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-domain {
    color: var(--secondary-color);
}

.footer-description {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-methods h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
}

.payment-icons i {
    color: var(--gray-text);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--light-text);
}

.footer-title {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-text);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-text);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-social h4 {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--gray-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--light-text);
    transform: translateY(-5px);
}

.social-links a:nth-child(1):hover {
    background-color: #06C755;
}

.social-links a:nth-child(2):hover {
    background-color: #1877F2;
}

.social-links a:nth-child(3):hover {
    background-color: #1DA1F2;
}

.social-links a:nth-child(4):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a:nth-child(5):hover {
    background-color: #FF0000;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(83, 82, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.responsible-content h4 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.responsible-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-text);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 100;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Prompt', sans-serif;
}

.login-btn {
    background-color: var(--card-bg);
    color: var(--light-text);
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.register-btn {
    background: var(--gradient-primary);
    color: white;
}

.register-btn:hover {
    filter: brightness(1.1);
}

.bonus-btn {
    background: var(--gradient-secondary);
    color: white;
}

.bonus-btn:hover {
    filter: brightness(1.1);
}

/* Media Queries */
@media (max-width: 1100px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .responsible-gaming {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .responsible-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .brand-column {
        grid-column: span 1;
    }

    .footer-logo {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-social h4 {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .sticky-btn {
        padding: 12px 5px;
        font-size: 0.8rem;
    }

    .sticky-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 375px) {
    .sticky-btn span {
        display: none;
    }

    .sticky-btn i {
        font-size: 1.3rem;
    }

    .sticky-btn {
        padding: 15px 5px;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(83, 82, 237, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 90%, rgba(255, 71, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(83, 82, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

.cta-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(83, 82, 237, 0.05);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    border: 1px solid rgba(83, 82, 237, 0.1);
}

.cta-note i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.cta-note p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

.cta-note strong {
    color: var(--light-text);
}

.signup-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.signup-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.signup-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(83, 82, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.signup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.signup-header i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.signup-header h3 {
    font-size: 1.6rem;
    color: var(--light-text);
    margin: 0;
}

.signup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
    font-size: 1rem;
}

.signup-benefits li:last-child {
    border-bottom: none;
}

.signup-benefits li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.signup-timer {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.signup-timer p {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1rem;
}

.timer-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.2);
    margin-bottom: 5px;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.signup-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.signup-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

.signup-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 71, 87, 0.4);
}

.learn-more {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.learn-more i {
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--light-text);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Animated particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    background: var(--primary-color);
    filter: blur(30px);
    animation-duration: 25s;
    opacity: 0.08;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 20%;
    background: var(--secondary-color);
    filter: blur(40px);
    animation-duration: 30s;
    animation-delay: 2s;
    opacity: 0.05;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 80%;
    background: var(--primary-color);
    filter: blur(35px);
    animation-duration: 18s;
    animation-delay: 5s;
    opacity: 0.07;
}

.particle:nth-child(4) {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 50%;
    background: var(--secondary-color);
    filter: blur(25px);
    animation-duration: 22s;
    animation-delay: 8s;
    opacity: 0.06;
}

.particle:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 80%;
    left: 60%;
    background: var(--primary-color);
    filter: blur(30px);
    animation-duration: 28s;
    animation-delay: 4s;
    opacity: 0.09;
}

.particle:nth-child(6) {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 75%;
    background: var(--secondary-color);
    filter: blur(28px);
    animation-duration: 20s;
    animation-delay: 6s;
    opacity: 0.07;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 1100px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .signup-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .signup-header h3 {
        font-size: 1.4rem;
    }

    .signup-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }

    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .cta-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .timer-countdown {
        gap: 10px;
    }

    .timer-value {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .signup-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.cta-signup {
    position: relative;
    z-index: 1;
}