/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(18, 18, 18, 0.98);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: white;
}

.site-logo {
    display: flex;
    align-items: center;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
}

.star-icon {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 61, 0, 0.5));
}

.logo-text {
    background: linear-gradient(to right, white, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-accent {
    background: linear-gradient(to right, var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu li a:hover {
    color: white;
}

.nav-menu li a i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.header-login-btn,
.header-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-login-btn {
    background-color: transparent;
    color: white;
    border: 1px solid var(--primary-light);
}

.header-login-btn:hover {
    background-color: rgba(124, 77, 255, 0.1);
}

.header-register-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(98, 0, 234, 0.2);
}

.header-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(98, 0, 234, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
}

.toggle-icon,
.toggle-icon::before,
.toggle-icon::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.toggle-icon {
    top: 50%;
    transform: translateY(-50%);
}

.toggle-icon::before {
    content: '';
    top: -8px;
}

.toggle-icon::after {
    content: '';
    bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-logo {
    font-size: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-navigation {
    padding: 1.5rem;
    flex: 1;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1.2rem;
}

.mobile-nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-nav-menu li a:hover {
    color: white;
}

.mobile-nav-menu li a i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

.mobile-actions {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-login-btn,
.mobile-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-login-btn {
    background-color: rgba(124, 77, 255, 0.1);
    color: white;
    border: 1px solid var(--primary-light);
}

.mobile-register-btn {
    background: var(--gradient-primary);
    color: white;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-card);
    color: var(--text-color);
    padding: 4rem 0 0;
    position: relative;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-tagline {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links-column {
    min-width: 160px;
}

.footer-links-column h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: white;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-methods,
.footer-social {
    min-width: 250px;
}

.payment-methods h4,
.footer-social h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.2rem;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 61, 0, 0.1);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.responsible-gaming i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.responsible-gaming p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.login-btn {
    background-color: rgba(124, 77, 255, 0.1);
    color: white;
    border-top: 3px solid var(--primary-light);
}

.register-btn {
    background-color: var(--primary-color);
    color: white;
    border-top: 3px solid var(--primary-light);
}

.bonus-btn {
    background-color: var(--secondary-color);
    color: white;
    border-top: 3px solid #ff9100;
}

.sticky-button i {
    font-size: 1.1rem;
}

.sticky-button:hover {
    background-color: var(--dark-bg);
}

/* Media Queries */
@media (max-width: 1280px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        padding: 1rem;
    }
}

@media (max-width: 1100px) {
    .header-container {
        padding: 0.8rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .header-actions {
        display: none;
    }
    
    .site-header {
        padding: 0;
    }
    
    .header-container {
        padding: 0.7rem;
    }
    
    .site-logo {
        font-size: 1.6rem;
    }

    .footer-top,
    .footer-links,
    .footer-middle {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-column,
    .payment-methods,
    .footer-social {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .sticky-button {
        font-size: 0.8rem;
        padding: 0.8rem 0.5rem;
    }

    .sticky-button i {
        font-size: 1rem;
    }

    .responsible-gaming {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .responsible-gaming i {
        margin-bottom: 0.5rem;
    }

    .footer-links-column {
        min-width: 100%;
    }
}

/* Add a backdrop overlay when mobile menu is open */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.active {
    visibility: visible;
    opacity: 1;
}


/* Hero Section Styles */
:root {
    /* Main color scheme */
    --primary-color: #6200ea;
    --primary-light: #7c4dff;
    --secondary-color: #ff3d00;
    --text-color: #e0e0e0;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-accent: #2d2d2d;
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-primary: linear-gradient(135deg, #6200ea 0%, #7c4dff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff3d00 0%, #ff9100 100%);
    --shadow-soft: 0 8px 16px rgba(0, 0, 0, 0.5);
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* General Base Styles */
body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Sarabun', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    color: white;
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 95vh;
    padding: 2rem 0;
    overflow: hidden;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.85;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.feature i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: block;
}

.floating-bonus {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    animation: pulse 2s infinite;
}

.bonus-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bonus-amount {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.bonus-label {
    font-size: 0.75rem;
    color: white;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-light);
    color: white;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }

    .floating-bonus {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }

    .bonus-amount {
        font-size: 1.5rem;
    }

    .bonus-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.7rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .floating-bonus {
        width: 70px;
        height: 70px;
        top: -10px;
        right: -10px;
    }
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(98, 0, 234, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-info {
    flex: 1;
}

.about-highlight {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.about-info p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
}

.about-info strong {
    color: var(--primary-light);
    font-weight: 700;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: white;
}

.feature-card p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 0;
}

.about-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.about-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.about-image-container {
    flex: 1;
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.version-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.badge-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}

.access-card {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
    width: 80%;
}

.access-icon {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-icon i {
    color: white;
    font-size: 1.2rem;
}

.access-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: white;
}

.access-url {
    margin: 0;
    color: var(--primary-light);
    font-weight: bold;
    font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .about-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-highlight {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .about-highlight {
        font-size: 1rem;
    }

    .access-card {
        padding: 0.8rem 1rem;
    }

    .access-info h4 {
        font-size: 0.8rem;
    }

    .access-url {
        font-size: 0.75rem;
    }

    .about-button {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
}

/* Popular Games Section Styles */
.games-section {
    padding: 5rem 0;
    background-color: var(--dark-accent);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 90%, rgba(255, 61, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.games-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.games-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.games-intro p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.games-intro strong {
    color: var(--primary-light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.game-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed);
}

.game-card:hover {
    transform: translateY(-8px);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
}

.game-card:hover .play-button {
    transform: translateY(0);
}

.play-button:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.game-badge.hot {
    background: linear-gradient(135deg, #ff3d00, #ff9100);
}

.game-badge.classic {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.game-badge.popular {
    background: linear-gradient(135deg, #e91e63, #f48fb1);
}

.game-badge.easy {
    background: linear-gradient(135deg, #00c853, #69f0ae);
}

.game-info {
    padding: 1.2rem;
}

.game-info h3 {
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    color: white;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.game-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-color);
}

.game-features i {
    color: var(--primary-light);
    font-size: 0.85rem;
}

.game-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-value {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: bold;
}

.login-banner {
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.15) 0%, rgba(255, 61, 0, 0.15) 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: white;
}

.banner-text p {
    margin: 0;
    color: var(--text-color);
}

.login-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
}

.login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Media Queries */
@media (max-width: 1100px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto 2rem;
    }

    .games-intro p {
        font-size: 1rem;
    }

    .login-banner {
        padding: 1.5rem;
    }

    .banner-text h3 {
        font-size: 1.2rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .login-button {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
}

/* Payment Methods Section Styles */
.payment-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(124, 77, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.payment-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.payment-image {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.payment-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.payment-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: var(--gradient-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    color: white;
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span {
    color: white;
    font-size: 0.85rem;
    line-height: 1.3;
}

.badge-text span:first-child {
    font-weight: bold;
}

.payment-info {
    flex: 1;
}

.payment-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.payment-intro strong {
    color: var(--primary-light);
}

.payment-steps {
    margin-bottom: 2.5rem;
}

.payment-steps h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.payment-steps h3 i {
    color: var(--primary-light);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.steps-list li {
    display: flex;
    margin-bottom: 1rem;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: var(--gradient-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.step-content p {
    margin: 0;
    color: var(--text-color);
}

.step-content strong {
    color: var(--primary-light);
}

.payment-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advantage-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.advantage-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    color: white;
    font-size: 1.2rem;
}

.advantage-text h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: white;
}

.advantage-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.payment-note {
    background-color: rgba(124, 77, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-light);
}

.note-icon i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.payment-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.payment-cta {
    text-align: center;
}

.payment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.payment-methods {
    margin-top: 3rem;
}

.payment-methods h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
}

.methods-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.method-item {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: transform var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.method-item:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.method-icon.bank {
    background: linear-gradient(135deg, #00c853, #69f0ae);
}

.method-icon.prompt {
    background: linear-gradient(135deg, #039be5, #29b6f6);
}

.method-icon.credit {
    background: linear-gradient(135deg, #d500f9, #ea80fc);
}

.method-icon.crypto {
    background: linear-gradient(135deg, #ffd600, #ffea00);
}

.method-icon.true {
    background: var(--gradient-secondary);
}

.method-item.highlight {
    border: 2px solid var(--secondary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .payment-content {
        flex-direction: column;
        gap: 3rem;
    }

    .payment-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .payment-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .payment-section {
        padding: 4rem 0;
    }

    .payment-intro {
        font-size: 1rem;
    }

    .payment-steps h3 {
        font-size: 1.2rem;
    }

    .methods-grid {
        gap: 1rem;
    }

    .method-item {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .payment-advantages {
        grid-template-columns: 1fr;
    }

    .payment-badge {
        right: 0;
        bottom: -20px;
        padding: 0.6rem 1rem;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
    }

    .badge-text span {
        font-size: 0.8rem;
    }

    .payment-button {
        width: 100%;
        justify-content: center;
    }

    .payment-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .method-item {
        width: calc(50% - 0.5rem);
        padding: 1rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-icon i {
        font-size: 1.2rem;
    }

    .method-item span {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Security & Trust Section Styles */
.security-section {
    padding: 5rem 0;
    background-color: var(--dark-accent);
    position: relative;
    overflow: hidden;
}

.section-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    line-height: 0;
}

.section-waves svg {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
}

.bottom-waves {
    top: auto;
    bottom: 0;
    transform: rotate(180deg);
}

.security-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.security-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed);
}

.security-card:hover {
    transform: translateY(-5px);
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.security-icon i {
    font-size: 2rem;
    color: var(--primary-light);
}

.security-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.security-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.security-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(124, 77, 255, 0.1);
    border-radius: 20px;
}

.security-tag i {
    color: var(--primary-light);
}

.security-tag span {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-color);
}

.security-features {
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(124, 77, 255, 0.2);
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Prompt', sans-serif;
}

.feature-details h4 {
    margin: 0 0 0.8rem 0;
    font-size: 1.3rem;
    color: white;
}

.feature-details p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
}

.security-testimonial {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-soft);
}

.testimonial-quote {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-quote i {
    font-size: 1.8rem;
    color: white;
}

.testimonial-text {
    font-size: 1.2rem;
    color: white;
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image i {
    font-size: 1.5rem;
    color: white;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-color);
}

.security-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.1) 0%, rgba(124, 77, 255, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(124, 77, 255, 0.2);
}

.cta-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: white;
}

.cta-content p {
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
}

.security-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.security-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.security-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 1rem;
    min-width: 100px;
}

.badge i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.badge span {
    font-size: 0.8rem;
    color: var(--text-color);
    text-align: center;
}

/* Media Queries */
@media (max-width: 1100px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-cta {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .security-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 4rem 0;
    }

    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .feature-number {
        font-size: 2rem;
    }

    .feature-details h4 {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-testimonial {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .badge {
        min-width: 80px;
        padding: 0.8rem;
    }

    .badge i {
        font-size: 1.2rem;
    }

    .badge span {
        font-size: 0.7rem;
    }

    .security-button {
        width: 100%;
        justify-content: center;
    }
}

/* Promotions and Bonuses Section Styles */
.promotions-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.promotions-bg-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 61, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.promotions-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.promotions-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promotions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.promotions-intro p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.promotions-intro strong {
    color: var(--primary-light);
}

.promotions-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.promotion-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promotion-card.featured {
    border: 1px solid rgba(124, 77, 255, 0.3);
    box-shadow: 0 10px 25px rgba(124, 77, 255, 0.1);
}

.promotion-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 2rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.promotion-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promotion-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.promotion-icon i {
    font-size: 1.5rem;
    color: white;
}

.promotion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.promotion-details {
    padding: 1.5rem;
    flex-grow: 1;
    position: relative;
}

.promotion-details p {
    margin: 0 0 1.2rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.promotion-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.promotion-benefits li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.85rem;
}

.promotion-benefits li i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.promotion-highlight {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.highlight-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.highlight-label {
    font-size: 0.7rem;
    color: white;
    opacity: 0.8;
}

.promotion-highlight.play-free {
    background: var(--gradient-primary);
}

.promotion-highlight.play-free i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.2rem;
}

.promotion-footer {
    padding: 1.2rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.promotion-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

.promotion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.special-offer {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(255, 61, 0, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-left {
    flex: 3;
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.offer-left h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
    color: white;
}

.text-accent {
    color: var(--secondary-color);
}

.offer-left p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.offer-features li i {
    color: var(--secondary-color);
}

.offer-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    background: var(--gradient-secondary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.offer-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.offer-right {
    flex: 2;
    display: flex;
    justify-content: center;
}

.wheel-container {
    position: relative;
    width: 250px;
    height: 250px;
}

.prize-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg 60deg, var(--secondary-color) 60deg 120deg, var(--primary-light) 120deg 180deg, var(--primary-color) 180deg 240deg, var(--secondary-color) 240deg 300deg, var(--primary-light) 300deg 360deg);
    position: relative;
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.3);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    transform: rotate(0deg);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.wheel-center i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.wheel-segment {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 50%;
    transform-origin: 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-segment span {
    transform: rotate(30deg);
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.wheel-segment.s1 {
    transform: rotate(0deg);
}

.wheel-segment.s2 {
    transform: rotate(60deg);
}

.wheel-segment.s3 {
    transform: rotate(120deg);
}

.wheel-segment.s4 {
    transform: rotate(180deg);
}

.wheel-segment.s5 {
    transform: rotate(240deg);
}

.wheel-segment.s6 {
    transform: rotate(300deg);
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

.promotions-footer {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-soft);
}

.footer-text h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: white;
}

.footer-text p {
    margin: 0;
    color: var(--text-color);
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.register-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-soft);
}

.register-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.support-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.support-info i {
    color: var(--primary-light);
}

/* Media Queries */
@media (max-width: 1100px) {
    .promotions-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-offer {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .offer-features {
        display: inline-block;
        text-align: left;
    }

    .promotions-footer {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-cta {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 4rem 0;
    }

    .offer-left h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .promotions-showcase {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-left h3 {
        font-size: 1.3rem;
    }

    .wheel-container {
        width: 200px;
        height: 200px;
    }

    .wheel-segment span {
        font-size: 0.7rem;
    }

    .register-button {
        width: 100%;
        justify-content: center;
    }

    .special-offer {
        padding: 1.5rem;
    }
}