/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.main-nav {
    margin-left: auto;
    margin-right: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.nav-list li a {
    display: block;
    padding: 10px 15px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-sm);
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-list li a:hover {
    color: var(--primary-color);
}

.nav-list li a:hover::after {
    width: 30px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-header-login,
.btn-header-register {
    font-size: 0.9rem;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

.btn-header-login {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-header-login:hover {
    background-color: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.btn-header-register {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border: none;
}

.btn-header-register:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-header-login i,
.btn-header-register i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 1001;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.mobile-nav {
    flex-grow: 1;
    margin-bottom: 30px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 5px;
}

.mobile-nav-list li a {
    display: block;
    padding: 12px 15px;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-list li a:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding-left: 20px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-buttons .btn {
    width: 100%;
}

.mobile-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* Adjust main content padding for fixed header */
main {
    padding-top: 70px;
}

/* Media Queries for Header */
@media (max-width: 1100px) {
    .nav-list li a {
        padding: 10px 10px;
        font-size: 0.95rem;
    }

    .btn-header-login,
    .btn-header-register {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {

    .main-nav,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-content {
        padding: 12px 0;
    }

    main {
        padding-top: 64px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .mobile-menu {
        max-width: 100%;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/ff88bet (8).webp") center/cover no-repeat;
    opacity: 0.02;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li:last-child {
    margin-bottom: 0;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-links-column ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition-fast);
    transform: translateX(-5px);
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-links-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-disclaimer {
    width: 100%;
    max-width: 600px;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Media Queries for Footer */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .site-footer {
        padding: 50px 0 25px;
    }
}

@media (max-width: 767px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
    }

    .site-footer {
        padding: 40px 0 25px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-links-column h3 {
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding-top: 15px;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 900;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.98), rgba(18, 18, 18, 0.98));
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition-normal);
    border-radius: var(--border-radius-md);
    margin: 0 5px;
    text-align: center;
    max-width: 180px;
}

.sticky-btn:nth-child(1) {
    background-color: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--primary-color);
}

.sticky-btn:nth-child(2) {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.sticky-btn:nth-child(3) {
    background-color: rgba(255, 184, 0, 0.2);
    border: 1px solid var(--secondary-color);
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    font-size: 0.75rem;
}

.sticky-btn:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: white;
}

.sticky-btn:nth-child(2):hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

/* Media Queries for Sticky Buttons */
@media (max-width: 767px) {
    .sticky-btn {
        padding: 10px 5px;
        max-width: none;
    }

    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .sticky-btn span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 8px 10px;
    }

    .sticky-btn {
        margin: 0 3px;
    }

    .sticky-btn i {
        font-size: 1rem;
    }

    .sticky-btn span {
        font-size: 0.65rem;
    }
}

/* Base Theme Styles */
:root {
    /* Colors */
    --primary-color: #ff6b00;
    --secondary-color: #ffb800;
    --accent-color: #ff3e00;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #2a2a2a;
    --border-color: #333333;
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    /* Shadows */
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.35);
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    box-shadow: var(--box-shadow);
    text-decoration: none;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    color: var(--text-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/ff88bet (9).webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    position: relative;
    height: 450px;
    animation: floatMain 6s ease-in-out infinite;
}

.hero-image .main-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.item-1 {
    top: 10%;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.item-2 {
    bottom: 20%;
    right: 10%;
    animation: float 5s ease-in-out infinite 1s;
}

.item-3 {
    top: 50%;
    left: -20px;
    animation: float 6s ease-in-out infinite 2s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatMain {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-image {
        height: 350px;
    }

    .floating-item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
        --container-padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-image {
        height: 280px;
    }
}

/* Features Section Styles */
.features-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    color: var(--text-color);
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.features-text {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.features-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.features-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.features-text p:last-of-type {
    margin-bottom: 0;
}

.features-cta {
    margin-top: 30px;
    text-align: center;
}

.features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    background-color: var(--bg-card-hover);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 32px;
    color: var(--text-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Media Queries for Features Section */
@media (max-width: 1100px) {
    .features-cards {
        gap: 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .features-content {
        grid-template-columns: 1fr;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .features-text {
        padding: 20px;
    }

    .features-cards {
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .card-icon i {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 550px) {
    .features-cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px 15px;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.promotions-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.promotions-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.promotions-image {
    position: sticky;
    top: 100px;
}

.promo-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition-normal);
}

.promo-image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.main-promo-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
    filter: brightness(0.9);
}

.promo-image-container:hover .main-promo-image {
    filter: brightness(1);
    transform: scale(1.02);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.badge-text {
    color: var(--text-color);
    font-size: 1.5rem;
}

.badge-arrow {
    color: var(--text-color);
    margin: 0 5px;
    font-size: 1.5rem;
}

.promotions-text {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.promotions-text p {
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.promotions-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotions-list {
    margin: 25px 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--primary-color);
}

.promotions-list h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.promotions-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.promotions-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.promotions-list li:last-child {
    margin-bottom: 0;
}

.promotions-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.promotions-list li strong {
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 5px;
}

.promotions-cta {
    margin-top: 30px;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Media Queries for Promotions Section */
@media (max-width: 1100px) {
    .promotions-content {
        gap: 30px;
    }

    .promotions-text {
        padding: 25px;
    }

    .promo-badge {
        padding: 8px 12px;
    }

    .badge-text,
    .badge-arrow {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .promotions-content {
        grid-template-columns: 1fr;
    }

    .promotions-image {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .promotions-text {
        padding: 20px;
    }

    .promotions-list {
        padding: 15px;
        margin: 20px 0;
    }

    .promotions-list h3 {
        font-size: 1.1rem;
    }

    .promotions-list li {
        font-size: 0.95rem;
    }

    .promo-badge {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
    }

    .badge-text,
    .badge-arrow {
        font-size: 1.1rem;
    }

    .promotions-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promotions-list li {
        padding-left: 22px;
    }

    .promotions-list li::before {
        font-size: 0.9rem;
    }
}

/* Registration Section Styles */
.registration-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/ff88bet (10).webp") center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.registration-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 var(--border-radius-lg) 0 var(--border-radius-lg);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-icon i {
    font-size: 24px;
    color: white;
}

.step-details {
    flex-grow: 1;
}

.step-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-details p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.registration-text {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.text-content {
    flex-grow: 1;
}

.text-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.text-content p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content p a {
    color: var(--secondary-color);
    font-weight: 700;
    transition: var(--transition-fast);
    position: relative;
}

.text-content p a:hover {
    color: var(--primary-color);
}

.text-content p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.text-content p a:hover::after {
    background-color: var(--primary-color);
}

.registration-cta {
    margin-top: 30px;
    text-align: center;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* Media Queries for Registration Section */
@media (max-width: 1100px) {
    .registration-content {
        gap: 30px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .step-icon i {
        font-size: 20px;
    }

    .step-details h3 {
        font-size: 1.1rem;
    }

    .registration-text {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .registration-content {
        grid-template-columns: 1fr;
    }

    .step-item {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .registration-text {
        padding: 20px;
    }

    .btn-large {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .step-details p {
        font-size: 0.9rem;
    }

    .registration-steps {
        gap: 15px;
    }
}

/* Lottery Section Styles */
.lottery-section {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.lottery-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.lottery-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.lottery-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.lottery-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    max-height: 650px;
    position: sticky;
    top: 100px;
}

.main-lottery-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7);
}

.lottery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    padding: 20px;
}

.lottery-result {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.result-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.result-numbers {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.result-numbers span {
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.result-numbers span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.lottery-text {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.lottery-text p {
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.lottery-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.lottery-features {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-text strong {
    color: var(--text-color);
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.lottery-cta {
    margin-top: 30px;
    text-align: center;
}

@keyframes numberRoll {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.result-numbers span {
    animation: numberRoll 0.5s ease-out forwards;
}

.result-numbers span:nth-child(2) {
    animation-delay: 0.1s;
}

.result-numbers span:nth-child(3) {
    animation-delay: 0.2s;
}

.result-numbers span:nth-child(4) {
    animation-delay: 0.3s;
}

.result-numbers span:nth-child(5) {
    animation-delay: 0.4s;
}

.result-numbers span:nth-child(6) {
    animation-delay: 0.5s;
}

/* Media Queries for Lottery Section */
@media (max-width: 1100px) {
    .lottery-content {
        gap: 30px;
    }

    .lottery-text {
        padding: 25px;
    }

    .lottery-features {
        padding: 20px;
    }

    .result-numbers span {
        width: 40px;
        height: 50px;
        font-size: 1.7rem;
    }
}

@media (max-width: 991px) {
    .lottery-content {
        grid-template-columns: 1fr;
    }

    .lottery-image {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .lottery-overlay {
        padding: 15px;
    }

    .result-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .lottery-text {
        padding: 20px;
    }

    .lottery-features {
        padding: 15px;
        margin: 20px 0;
    }

    .feature-item {
        margin-bottom: 15px;
    }

    .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 12px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .result-numbers span {
        width: 35px;
        height: 45px;
        font-size: 1.5rem;
    }

    .lottery-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .result-numbers span {
        width: 28px;
        height: 40px;
        font-size: 1.3rem;
    }

    .feature-item {
        align-items: flex-start;
    }

    .feature-text strong {
        margin-bottom: 2px;
    }
}

/* Access Section Styles */
.access-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("images/ff88bet (11).webp") center/cover no-repeat;
    opacity: 0.02;
    z-index: 0;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.access-info {
    display: flex;
    flex-direction: column;
}

.access-text p {
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.access-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.access-list {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin: 20px 0;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.access-list h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
}

.access-list h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.access-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.access-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.access-list li:last-child {
    margin-bottom: 0;
}

.access-list li:hover {
    transform: translateX(5px);
}

.access-list li i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.access-list li span {
    flex-grow: 1;
    padding-top: 5px;
}

.access-list li span strong {
    color: var(--text-color);
    font-weight: 700;
    margin-right: 5px;
}

.access-cta {
    margin-top: 25px;
    text-align: center;
}

.access-devices {
    position: relative;
}

.device-mockups {
    position: relative;
    height: 550px;
}

.mockup-frame {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.mockup-screen {
    overflow: hidden;
}

.device-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center top;
    transition: var(--transition-normal);
}

.mockup-frame:hover .device-screen {
    transform: scale(1.02);
}

.desktop-mockup {
    position: absolute;
    width: 90%;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 1;
}

.desktop-mockup .mockup-frame {
    width: 100%;
    height: 100%;
    padding: 15px 15px 40px;
    background-color: #222;
    border-radius: 10px;
    position: relative;
}

.desktop-mockup .mockup-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    border-radius: 5px;
    overflow: hidden;
}

.desktop-mockup .mockup-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-mockup {
    position: absolute;
    width: 45%;
    height: 350px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.mobile-mockup .mockup-frame {
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    background-color: #222;
    border-radius: 30px;
    position: relative;
}

.mobile-mockup .mockup-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    border-radius: 20px;
    overflow: hidden;
}

.mobile-mockup .mockup-frame::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    background-color: var(--border-color);
    border-radius: 3px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.platforms {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 3;
}

.platform-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-normal);
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.platform-item i {
    font-size: 20px;
}

.platform-item span {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Media Queries for Access Section */
@media (max-width: 1200px) {
    .device-mockups {
        height: 500px;
    }

    .desktop-mockup {
        width: 85%;
        height: 350px;
    }

    .mobile-mockup {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .device-mockups {
        height: 450px;
        max-width: 650px;
        margin: 0 auto;
    }

    .desktop-mockup {
        width: 90%;
        height: 300px;
    }

    .mobile-mockup {
        width: 40%;
        height: 270px;
    }

    .platforms {
        bottom: -25px;
    }
}

@media (max-width: 767px) {
    .access-list {
        padding: 20px;
    }

    .access-list li {
        margin-bottom: 15px;
    }

    .access-list li i {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 12px;
    }

    .device-mockups {
        height: 380px;
    }

    .desktop-mockup {
        height: 250px;
    }

    .mobile-mockup {
        height: 230px;
    }

    .platforms {
        gap: 15px;
    }

    .platform-item {
        padding: 10px 15px;
    }

    .platform-item i {
        font-size: 18px;
    }

    .platform-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .device-mockups {
        height: 320px;
    }

    .desktop-mockup {
        height: 200px;
    }

    .mobile-mockup {
        height: 200px;
    }

    .platforms {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        bottom: -45px;
    }

    .platform-item {
        padding: 8px 12px;
        flex: 0 0 calc(33.333% - 10px);
        justify-content: center;
    }

    .platform-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .access-list li span {
        font-size: 0.9rem;
    }

    .device-mockups {
        height: 280px;
    }

    .desktop-mockup {
        height: 180px;
    }

    .mobile-mockup {
        height: 180px;
    }
}