/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 5px;
}

.logo-tagline {
    font-family: 'Prompt', sans-serif;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Navigation Menu */
.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list li a:hover {
    color: var(--text-primary);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login,
.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-register {
    color: white;
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(124, 77, 255, 0.4);
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
}

.hamburger-line {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.menu-open .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 999;
    visibility: hidden;
}

.mobile-menu.active {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
}

.mobile-nav {
    padding: 2rem 5%;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: var(--primary-color);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 5% 2rem;
}

.mobile-buttons .btn-login,
.mobile-buttons .btn-register {
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Scroll Effect for Header */
.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

/* Responsive Styles for Header */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }

    .header-buttons {
        gap: 0.8rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    /* Navigation styles moved to 1150px breakpoint */
}

@media (max-width: 576px) {
    .header-container {
        padding: 1rem 4%;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.site-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(124, 77, 255, 0.03) 0%, rgba(124, 77, 255, 0) 70%);
    opacity: 0.5;
    z-index: 0;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 64, 129, 0.03) 0%, rgba(255, 64, 129, 0) 70%);
    opacity: 0.5;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer Brand Section */
.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer Links Section */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex: 2;
}

.footer-links-section {
    flex: 1;
    min-width: 160px;
}

.footer-heading {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Responsible Gaming Section */
.footer-responsible {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.responsible-gaming i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Media Queries for Footer */
@media (max-width: 992px) {
    .footer-main {
        gap: 3rem;
    }

    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 5% 2rem;
    }

    .footer-brand {
        flex: 100%;
    }

    .footer-links {
        flex: 100%;
    }

    .footer-links-section {
        min-width: 140px;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-section {
        width: 100%;
    }

    .footer-responsible {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 990;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
}

.sticky-button:nth-child(1) {
    color: var(--text-primary);
}

.sticky-button:nth-child(2) {
    position: relative;
}

.sticky-button:nth-child(2)::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: calc(100% + 10px);
    background: var(--accent-gradient);
    z-index: -1;
    clip-path: polygon(0 10px, 50% 0, 100% 10px, 100% 100%, 0 100%);
}

.sticky-button:nth-child(2) span,
.sticky-button:nth-child(2) i {
    color: white;
    position: relative;
    z-index: 1;
}

.sticky-button:nth-child(3) {
    color: var(--text-primary);
}

.sticky-button i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.sticky-button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sticky-button:nth-child(2):hover {
    transform: translateY(-3px);
}

/* Adjust main content to accommodate sticky buttons */
body {
    padding-bottom: 70px;
}

/* Media Queries for Sticky Buttons */
@media (max-width: 576px) {
    .sticky-button span {
        font-size: 0.8rem;
    }

    .sticky-button i {
        font-size: 1.3rem;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Hero Section CSS */

/* ========== Hero Section Styles ========== */
:root {
    --primary-color: #7c4dff;
    --secondary-color: #ff4081;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    padding: 2rem 5%;
    background: var(--darker-bg);
    background-image: radial-gradient(circle at top right, rgba(124, 77, 255, 0.15) 0%, transparent 60%), radial-gradient(circle at bottom left, rgba(255, 64, 129, 0.1) 0%, transparent 50%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    max-width: 650px;
    margin: 3rem 0;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(124, 77, 255, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
    min-width: 180px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(124, 77, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    margin: 0 auto;
    max-width: 500px;
    z-index: 1;
}

.main-hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: floatElement 5s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.5rem;
}

.slot-icon {
    top: 10%;
    left: -10%;
    width: 60px;
    height: 60px;
    animation-delay: 0.5s;
}

.cards-icon {
    bottom: 15%;
    right: -5%;
    width: 50px;
    height: 50px;
    animation-delay: 1s;
}

.dice-icon {
    top: 40%;
    right: -15%;
    width: 40px;
    height: 40px;
    animation-delay: 0.2s;
}

@keyframes floatElement {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, 10px) rotate(5deg);
    }

    50% {
        transform: translate(0, 15px) rotate(0deg);
    }

    75% {
        transform: translate(-10px, 5px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.hero-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature span {
    font-weight: 500;
    color: var(--text-secondary);
}

/* Media Queries for Responsiveness */
@media (min-width: 992px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 8%;
    }

    .hero-content {
        margin: 0;
        flex: 1;
    }

    .hero-image {
        flex: 1;
        margin-left: 2rem;
    }

    .hero-features {
        position: absolute;
        bottom: 2rem;
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 5%;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto 2rem auto;
    }


    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .feature {
        width: 45%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        min-width: unset;
    }

    .feature {
        width: 100%;
    }
}

/* Services Section Styles */

/* ========== Services Section Styles ========== */
.services-section {
    padding: 5rem 5%;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(124, 77, 255, 0.07) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(255, 64, 129, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    opacity: 0.7;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(124, 77, 255, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: auto;
}

.card-btn:hover {
    color: var(--secondary-color);
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover i {
    transform: translateX(5px);
}

/* Features Row */
.services-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 4rem 0;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Call to Action */
.cta-container {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.2) 0%, rgba(255, 64, 129, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(124, 77, 255, 0.6);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.1rem;
    }

    .cta-container {
        padding: 2.5rem;
        justify-content: center;
        text-align: center;
    }

    .cta-content {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 5%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .feature-box {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .cta-container {
        padding: 2rem 1.5rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Security Section Styles */
.security-section {
    padding: 6rem 5%;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

/* Background effect */
.security-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.03) 0%, rgba(255, 64, 129, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.security-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.security-content {
    flex: 1;
    min-width: 300px;
}

.section-header.left-aligned {
    text-align: left;
    margin-bottom: 2.5rem;
}

.section-header.left-aligned h2::after {
    left: 0;
    transform: none;
}

.section-tag {
    display: inline-block;
    background: rgba(124, 77, 255, 0.15);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.security-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(124, 77, 255, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 1.5rem;
}

.feature-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.security-btn {
    margin-top: 1rem;
}

.security-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.security-image {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-security-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.security-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.security-badge i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.security-badge span {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.security-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 220px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .security-container {
        flex-direction: column;
        gap: 3rem;
    }

    .security-content,
    .security-image-container {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .security-section {
        padding: 5rem 5%;
    }

    .security-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 150px;
    }

    .trust-indicators {
        gap: 1.5rem;
    }

    .trust-item {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .security-feature {
        padding: 1.2rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }

    .feature-details h3 {
        font-size: 1.1rem;
    }

    .trust-item {
        width: 130px;
    }

    .trust-item i {
        font-size: 1.6rem;
    }

    .trust-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .security-section {
        padding: 4rem 5%;
    }

    .section-header.left-aligned h2 {
        font-size: 1.6rem;
    }

    .security-feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .feature-icon {
        margin-bottom: 0.5rem;
    }

    .stat-item {
        width: 100%;
    }

    .trust-indicators {
        gap: 2rem 1rem;
    }

    .trust-item {
        width: 40%;
    }
}

/* ========== Premium Games & Promotions Section Styles ========== */
.premium-games-section {
    padding: 6rem 5%;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.premium-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(124, 77, 255, 0.07) 0%, transparent 30%), radial-gradient(circle at 90% 90%, rgba(255, 64, 129, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

/* Game Showcase */
.games-showcase {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.game-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-button i {
    font-size: 1.1rem;
}

.tab-button:hover,
.tab-button.active {
    background: rgba(124, 77, 255, 0.15);
    color: var(--primary-color);
    border-color: rgba(124, 77, 255, 0.3);
}

.tab-button.active {
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.2);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 2rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.game-badge.hot {
    background: var(--secondary-color);
}

.game-badge.new {
    background: #00b894;
}

.play-button {
    background: white;
    color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
    margin-bottom: 1rem;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-info {
    padding: 1.2rem;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.game-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.game-meta i {
    color: var(--primary-color);
}

.view-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin: 2rem auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background: rgba(124, 77, 255, 0.15);
    color: var(--primary-color);
    border-color: rgba(124, 77, 255, 0.3);
}

.view-all-button i {
    transition: transform 0.3s ease;
}

.view-all-button:hover i {
    transform: translateX(5px);
}

/* Promotions Styles */
.promotions-container {
    margin-top: 5rem;
}

.promotion-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promotion-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.promotion-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.promotion-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.promotions-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promotion-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.promotion-card.featured {
    border: 1px solid rgba(124, 77, 255, 0.3);
    box-shadow: 0 10px 25px rgba(124, 77, 255, 0.15);
}

.promotion-image {
    position: relative;
    height: 180px;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promotion-content {
    padding: 1.5rem;
}

.promotion-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.promotion-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promotion-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
}

.promotion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(124, 77, 255, 0.5);
}

/* Payment Methods */
.payment-methods {
    margin-top: 5rem;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(124, 77, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-icon:hover i {
    transform: translateY(-5px);
    background: rgba(124, 77, 255, 0.2);
}

.payment-icon span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .premium-games-section {
        padding: 5rem 5%;
    }

    .promotion-title {
        font-size: 2rem;
    }

    .payment-icons {
        gap: 1.5rem;
    }

    .payment-icon i {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .game-tabs {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .tab-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .promotion-title {
        font-size: 1.8rem;
    }

    .payment-methods h3 {
        font-size: 1.3rem;
    }

    .payment-icon i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .premium-games-section {
        padding: 4rem 4%;
    }

    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .promotion-title {
        font-size: 1.5rem;
    }

    .promotions-slider {
        gap: 20px;
    }

    .payment-icons {
        gap: 1rem;
    }

    .payment-icon {
        width: calc(33.33% - 1rem);
    }

    .payment-icon i {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .payment-icon span {
        font-size: 0.8rem;
    }
}

/* ========== Free Credit Section Styles ========== */
.free-credit-section {
    padding: 6rem 5%;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

/* Background glow effects */
.free-credit-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(124, 77, 255, 0.1) 0%, rgba(124, 77, 255, 0) 70%);
    opacity: 0.6;
    z-index: 0;
}

.free-credit-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(255, 64, 129, 0.08) 0%, rgba(255, 64, 129, 0) 70%);
    opacity: 0.6;
    z-index: 0;
}

.free-credit-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.credit-content {
    flex: 1;
    min-width: 300px;
}

.credit-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

/* Credit Features */
.credit-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.credit-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.credit-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.credit-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 64, 129, 0.1);
    color: var(--secondary-color);
    border-radius: 10px;
    font-size: 1.5rem;
}

.credit-feature .feature-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.credit-feature .feature-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Steps Process */
.steps-container {
    background: rgba(30, 30, 30, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.steps-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    flex: 1;
    min-width: 200px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
}

.step-icon {
    background: rgba(124, 77, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    background: rgba(124, 77, 255, 0.2);
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Button Styles */
.btn.credit-btn {
    margin-top: 2rem;
    background: var(--accent-gradient);
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.3);
}

.btn.credit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 64, 129, 0.4);
}

/* Credit Card Design */
.credit-card {
    background: linear-gradient(135deg, #7c4dff 0%, #ff4081 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s ease;
    z-index: 10;
}

.credit-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(255,255,255,0.05)" d="M30.87,100H0V69.13L50.74,18.39c2.74-2.74,7.17-2.74,9.91,0l21.7,21.7c2.74,2.74,2.74,7.17,0,9.91L30.87,100z"/><path fill="rgba(255,255,255,0.05)" d="M100,30.87V100H69.13L18.39,49.26c-2.74-2.74-2.74-7.17,0-9.91l21.7-21.7c2.74-2.74,7.17-2.74,9.91,0L100,30.87z"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.credit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.credit-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
}

.credit-card-body {
    margin: 1.5rem 0;
}

.credit-amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.credit-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.credit-card-footer {
    display: flex;
    flex-direction: column;
}

.credit-tagline {
    font-size: 0.95rem;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.credit-valid {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: floatCoin 6s ease-in-out infinite;
}

.coin-1 {
    top: 30%;
    left: 0;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.coin-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatCoin {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -15px) rotate(15deg);
    }

    50% {
        transform: translate(0, -25px) rotate(0deg);
    }

    75% {
        transform: translate(-15px, -15px) rotate(-15deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Testimonial */
.testimonial-bubble {
    position: absolute;
    bottom: 0;
    right: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    font-size: 1.5rem;
    color: rgba(124, 77, 255, 0.5);
    margin-bottom: 0.5rem;
}

.testimonial-content p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: right;
    font-style: italic;
}

/* Bonus Counter */
.bonus-counter {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 5rem;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 15px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.counter-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.counter-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .free-credit-container {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .credit-content,
    .credit-image-container {
        width: 100%;
    }

    .credit-card {
        margin: 0 auto;
    }

    .testimonial-bubble {
        right: 10%;
    }
}

@media (max-width: 992px) {
    .free-credit-section {
        padding: 5rem 5%;
    }

    .steps-title {
        font-size: 1.3rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .counter-number {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .credit-feature {
        padding: 1.2rem;
        gap: 1rem;
    }

    .credit-feature .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }

    .steps-container {
        padding: 1.5rem;
    }

    .step-item {
        min-width: 150px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .testimonial-bubble {
        max-width: 200px;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .free-credit-section {
        padding: 4rem 5%;
    }

    .section-header.left-aligned h2 {
        font-size: 1.6rem;
    }

    .credit-feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .credit-feature .feature-icon {
        margin-bottom: 0.5rem;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .step-item {
        width: 100%;
    }

    .credit-card {
        max-width: 300px;
    }

    .testimonial-bubble {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
        max-width: 100%;
    }

    .counter-item {
        width: 100%;
    }

    .btn.credit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Registration Section Styles */

/* ========== Registration Section Styles ========== */
.registration-section {
    padding: 6rem 5%;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 85% 15%, rgba(124, 77, 255, 0.08) 0%, transparent 40%), radial-gradient(circle at 15% 85%, rgba(255, 64, 129, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.registration-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.registration-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.registration-card.login-card {
    border-top: 5px solid var(--primary-color);
}

.registration-card:first-child {
    border-top: 5px solid var(--secondary-color);
}

.registration-header {
    margin-bottom: 2rem;
}

.registration-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.registration-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.registration-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Registration Steps */
.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.registration-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-marker {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4081 0%, #ff6a9c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
}

.step-marker.blue {
    background: linear-gradient(135deg, #7c4dff 0%, #9a7cff 100%);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.registration-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 64, 129, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 64, 129, 0.2);
}

.login-card .registration-note {
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid rgba(124, 77, 255, 0.2);
}

.registration-note i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.login-card .registration-note i {
    color: var(--primary-color);
}

.registration-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.registration-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff4081 0%, #ff6a9c 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
}

.registration-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.5);
}

.login-button {
    background: linear-gradient(135deg, #7c4dff 0%, #9a7cff 100%);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.login-button:hover {
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.5);
}

/* Login Alternatives */
.login-alternatives {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-alternatives h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.login-alternatives p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.alternatives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alternatives-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.alternatives-list li i {
    color: var(--primary-color);
}

/* Account Features */
.account-features {
    margin-top: 5rem;
    text-align: center;
}

.account-features h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.account-features h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 1rem;
}

.account-feature {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.account-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(124, 77, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.account-feature:nth-child(2n) .feature-icon {
    background: rgba(255, 64, 129, 0.1);
    color: var(--secondary-color);
}

.account-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.account-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
}

.faq-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(30, 30, 30, 0.8);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .registration-container {
        grid-template-columns: 1fr;
    }

    .account-features h3,
    .faq-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .registration-section {
        padding: 5rem 5%;
    }

    .registration-card {
        padding: 1.5rem;
    }

    .account-feature {
        padding: 1.5rem;
    }

    .account-feature .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .registration-container {
        grid-template-columns: 1fr;
    }

    .registration-title {
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .registration-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }

    .account-features h3,
    .faq-title {
        font-size: 1.4rem;
    }

    .features-grid {
        gap: 20px;
    }

    .faq-question span {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .registration-container {
        grid-template-columns: 1fr;
    }
}

/* New media query for 1150px breakpoint */
@media (max-width: 1150px) {
    .main-nav,
    .header-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}
