/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(18, 18, 18, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.brand-highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    margin-left: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-list li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--secondary-color);
}

.nav-list li a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline-header {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-outline-header:hover {
    background: rgba(106, 17, 203, 0.1);
}

.btn-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-header:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.toggle-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.toggle-icon::before {
    top: -8px;
}

.toggle-icon::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .toggle-icon {
    background-color: transparent;
}

.mobile-menu-toggle.active .toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--dark-surface);
    z-index: 1000;
    padding: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-list li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-footer .btn {
    width: 100%;
    text-align: center;
}

/* Overlay for Mobile Menu */
.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;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-surface-2);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.05), transparent);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-tagline {
    margin-top: 1rem;
    color: var(--text-color-muted);
    line-height: 1.6;
}

.footer-links {
    flex: 1 1 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links-column {
    flex: 1 1 200px;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
    text-decoration: none;
    color: var(--text-color-muted);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-legal {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-color-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    color: var(--text-color-muted);
    font-size: 0.9rem;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.sticky-buttons a {
    flex: 1;
    text-align: center;
    margin: 0 0.4rem;
    padding: 0.8rem 0;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-buttons a i {
    margin-right: 8px;
    font-size: 1rem;
}

.sticky-button-login {
    background-color: var(--primary-color);
    color: white;
}

.sticky-button-login:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(106, 17, 203, 0.3);
}

.sticky-button-register {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.sticky-button-register:hover {
    background-color: var(--secondary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(255, 149, 0, 0.3);
}

.sticky-button-freecredit {
    background-color: var(--accent-color);
    color: white;
}

.sticky-button-freecredit:hover {
    background-color: #e03770;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(255, 64, 129, 0.3);
}

/* Media Queries for Header, Footer, and Sticky Buttons */
@media (max-width: 1150px) {
    .main-nav {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-header {
        padding: 0.6rem 0;
    }
}

@media (max-width: 992px) {
    .footer-content {
        gap: 2rem;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .footer-links {
        flex: 1 1 100%;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 1.5rem;
    }

    .footer-links-column h3 {
        font-size: 1.1rem;
    }

    .legal-links {
        gap: 1rem;
    }

    .sticky-buttons a {
        font-size: 0.85rem;
        padding: 0.7rem 0;
    }

    .sticky-buttons a i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1.3rem;
    }

    .site-header {
        padding: 0.5rem 0;
    }

    .site-footer {
        padding: 3rem 0 2rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-links-column {
        flex: 1 1 100%;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .sticky-buttons {
        padding: 0.6rem 0.5rem;
    }

    .sticky-buttons a {
        font-size: 0.75rem;
        padding: 0.6rem 0;
        margin: 0 0.2rem;
    }

    .sticky-buttons a i {
        margin-right: 4px;
        font-size: 0.8rem;
    }
}

/* Base Theme and Reset */
:root {
    /* Color Palette */
    --primary-color: #6a11cb;
    --primary-color-dark: #5a0cb0;
    --secondary-color: #ff9500;
    --secondary-color-dark: #e08600;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-surface-2: #2c2c2c;
    --text-color: #ffffff;
    --text-color-muted: #b3b3b3;
    --accent-color: #ff4081;
    --border-color: #333333;
    --success-color: #00e676;
    --error-color: #ff1744;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--text-color);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
    color: var(--dark-bg);
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-color-dark), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    padding-top: 10rem;
    background: linear-gradient(180deg, var(--dark-bg), var(--dark-surface));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 17, 203, 0.15), transparent 50%);
    z-index: 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(106, 17, 203, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.4);
}

.hero-buttons {
    margin-top: 2rem;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.sticky-buttons a {
    flex: 1;
    text-align: center;
    margin: 0 0.5rem;
    padding: 0.8rem 0;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sticky-button-login {
    background-color: var(--primary-color);
    color: white;
}

.sticky-button-register {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.sticky-button-freecredit {
    background-color: var(--accent-color);
    color: white;
}

.sticky-buttons a:hover {
    transform: translateY(-3px);
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-image {
        width: 80%;
        margin: 0 auto;
    }

    .btn {
        padding: 0.7rem 1.3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 4rem 0;
        padding-top: 7.5rem;
    }

    .hero-image {
        width: 100%;
    }

    .sticky-buttons a {
        font-size: 0.8rem;
        padding: 0.7rem 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }

    body {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 3rem 0;
        padding-top: 7.5rem;
    }

    .btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
        display: block;
        margin: 0.5rem auto;
        width: 80%;
    }

    .sticky-buttons {
        padding: 0.6rem 0;
    }

    .sticky-buttons a {
        margin: 0 0.3rem;
        padding: 0.6rem 0;
        font-size: 0.75rem;
    }
}

/* Intro Section Styles */
.intro-section {
    padding: 5rem 0;
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.intro-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: 20%;
    border-radius: 2px;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.intro-text {
    flex: 1 1 60%;
    min-width: 300px;
}

.intro-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.intro-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.intro-features {
    flex: 1 1 30%;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-surface-2), var(--dark-surface));
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(106, 17, 203, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.intro-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.3);
}

/* Media Queries for Intro Section */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .intro-content {
        flex-direction: column;
    }

    .intro-text,
    .intro-features {
        flex: 1 1 100%;
    }

    .intro-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .intro-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.4rem;
    }

    .intro-section {
        padding: 3rem 0;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .btn-gradient {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
}

/* Betting Section Styles */
.betting-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.betting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236a11cb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.betting-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

.betting-image {
    flex: 1 1 40%;
    min-width: 300px;
    position: relative;
}

.betting-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(106, 17, 203, 0.2);
}

.betting-image img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.3);
    border-color: rgba(106, 17, 203, 0.5);
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: rotate(3deg);
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-badge i {
    color: #fff;
    font-size: 0.8rem;
}

.betting-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.betting-text p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.betting-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(145deg, rgba(106, 17, 203, 0.1), rgba(255, 64, 129, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.15), transparent);
    z-index: 0;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.highlight-icon i {
    font-size: 26px;
    color: white;
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.highlight-content p {
    margin-bottom: 0;
    color: var(--text-color-muted);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(106, 17, 203, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Betting Section */
@media (max-width: 992px) {
    .betting-content {
        flex-direction: column;
    }

    .betting-image {
        order: 1;
        width: 80%;
        margin: 0 auto;
    }

    .betting-text {
        order: 2;
    }

    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .betting-section {
        padding: 4rem 0;
    }

    .betting-image {
        width: 100%;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .highlight-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .betting-section {
        padding: 3rem 0;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .floating-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        right: 10px;
    }
}

/* Promotion Section Styles */
.promotion-section {
    padding: 5rem 0;
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.promotion-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.08) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    z-index: 0;
    border-radius: 50%;
}

.promotion-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    z-index: 0;
    border-radius: 50%;
}

.promotion-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.promotion-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.promotion-intro strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.promotion-card {
    background: linear-gradient(145deg, var(--dark-surface-2), var(--dark-surface));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.promotion-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.card-icon i {
    font-size: 30px;
    color: white;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card-content p {
    color: var(--text-color-muted);
    line-height: 1.6;
}

.card-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
    padding-left: 1.3rem;
}

.promotion-extra {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.extra-content {
    flex: 1;
}

.extra-content p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.extra-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.promo-banner {
    flex: 0 0 300px;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.9), rgba(255, 64, 129, 0.9));
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: -1;
}

.promo-banner:hover {
    transform: translateY(-5px);
}

.banner-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-shine {
    background: white;
    color: var(--primary-color-dark);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    opacity: 0;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.btn-shine:hover::after {
    opacity: 1;
    transform: rotate(30deg) translate(100%, -100%);
}

.btn-shine:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.3);
}

/* Media Queries for Promotion Section */
@media (max-width: 992px) {
    .promotion-extra {
        flex-direction: column;
    }

    .promo-banner {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .promotion-section {
        padding: 4rem 0;
    }

    .promotion-intro {
        margin-bottom: 2rem;
    }

    .promotion-cards {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .promotion-card {
        padding: 1.8rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 26px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .promotion-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .promotion-intro p {
        font-size: 1rem;
    }

    .promotion-card {
        padding: 1.5rem;
    }

    .card-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.8rem;
        padding-left: 1.1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.2rem;
    }

    .card-icon i {
        font-size: 22px;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .banner-content h3 {
        font-size: 1.6rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

/* Deposit Section Styles */
.deposit-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.deposit-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.deposit-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.deposit-features {
    flex: 1 1 30%;
    min-width: 300px;
}

.deposit-feature-item {
    background: linear-gradient(145deg, var(--dark-surface-2), var(--dark-surface));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.deposit-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(106, 17, 203, 0.2);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.feature-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-details p {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.deposit-info {
    flex: 1 1 60%;
    min-width: 300px;
}

.deposit-info p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.deposit-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.deposit-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.deposit-info strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.deposit-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(106, 17, 203, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(106, 17, 203, 0.1);
    position: relative;
}

.deposit-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.03), rgba(255, 64, 129, 0.03));
    z-index: -1;
    border-radius: inherit;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    font-size: 24px;
    color: white;
}

.step-info h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text-color);
}

.step-info p {
    font-size: 0.85rem;
    color: var(--text-color-muted);
    margin-bottom: 0;
}

.step-arrow {
    color: var(--text-color-muted);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.deposit-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
    color: var(--dark-bg);
    border: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.3);
}

.btn-large:hover {
    background: linear-gradient(135deg, var(--secondary-color-dark), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 149, 0, 0.4);
}

.btn-large i {
    margin-right: 8px;
}

/* Media Queries for Deposit Section */
@media (max-width: 992px) {
    .deposit-section .section-header h2 {
        font-size: 1.8rem;
    }

    .deposit-content {
        flex-direction: column-reverse;
    }

    .deposit-info,
    .deposit-features {
        flex: 1 1 100%;
    }

    .deposit-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .deposit-feature-item {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .deposit-section {
        padding: 4rem 0;
    }

    .deposit-section .section-header h2 {
        font-size: 1.6rem;
    }

    .deposit-features {
        grid-template-columns: 1fr;
    }

    .deposit-process {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .deposit-section {
        padding: 3rem 0;
    }

    .deposit-section .section-header h2 {
        font-size: 1.4rem;
    }

    .deposit-feature-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .feature-number {
        font-size: 1.7rem;
    }

    .feature-details h3 {
        font-size: 1rem;
    }

    .feature-details p {
        font-size: 0.85rem;
    }

    .deposit-process {
        margin: 2rem 0;
        padding: 1.2rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 20px;
    }

    .btn-large {
        font-size: 1rem;
        padding: 0.8rem 1.3rem;
    }
}

/* Income Section Styles */
.income-section {
    padding: 5rem 0;
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.income-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(106, 17, 203, 0.03) 1px, transparent 1px), linear-gradient(to right, rgba(106, 17, 203, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.income-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.income-text {
    flex: 1 1 55%;
    min-width: 300px;
}

.income-text p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.income-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.income-image {
    flex: 1 1 35%;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.income-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 16px;
}

.income-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    z-index: 1;
}

.image-overlay span {
    padding: 0.5rem 1rem;
    background-color: rgba(106, 17, 203, 0.7);
    border-radius: 30px;
    font-size: 0.85rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-overlay span:last-child {
    background-color: rgba(255, 64, 129, 0.7);
}

.income-techniques {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.techniques-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.techniques-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: calc(50% - 50px);
    border-radius: 2px;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.technique-item {
    background: linear-gradient(145deg, var(--dark-surface-2), var(--dark-surface));
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.technique-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(106, 17, 203, 0.2);
}

.technique-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 10px rgba(106, 17, 203, 0.2);
}

.technique-icon i {
    font-size: 22px;
    color: white;
}

.technique-content {
    flex: 1;
}

.technique-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--text-color);
}

.technique-content p {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.technique-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.income-conclusion {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(106, 17, 203, 0.05), rgba(255, 64, 129, 0.05));
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(106, 17, 203, 0.1);
}

.income-conclusion p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.income-conclusion strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.conclusion-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -2;
    border-radius: inherit;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 300% 100%;
    animation: glow 3s ease infinite;
}

@keyframes glow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
}

/* Media Queries for Income Section */
@media (max-width: 992px) {
    .income-section .section-header h2 {
        font-size: 1.8rem;
    }

    .income-content {
        flex-direction: column;
    }

    .income-text,
    .income-image {
        flex: 1 1 100%;
    }

    .income-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .income-section {
        padding: 4rem 0;
    }

    .income-section .section-header h2 {
        font-size: 1.6rem;
    }

    .techniques-title {
        font-size: 1.3rem;
    }

    .technique-item {
        padding: 1.3rem;
    }

    .technique-icon {
        width: 45px;
        height: 45px;
    }

    .technique-icon i {
        font-size: 20px;
    }

    .technique-content h4 {
        font-size: 1rem;
    }

    .income-conclusion {
        padding: 1.5rem;
    }

    .btn-glow {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 576px) {
    .income-section {
        padding: 3rem 0;
    }

    .income-section .section-header h2 {
        font-size: 1.4rem;
    }

    .techniques-grid {
        grid-template-columns: 1fr;
    }

    .techniques-title {
        font-size: 1.2rem;
    }

    .image-overlay span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .technique-item {
        padding: 1.2rem;
    }

    .technique-content p {
        font-size: 0.9rem;
    }

    .income-conclusion {
        padding: 1.2rem;
    }

    .btn-glow {
        width: 100%;
        max-width: 300px;
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
}