    :root {
        --primary-color: #ffae11;
        --secondary-color: #d4af37;
        --dark-color: #111111;
        --light-color: #f8f9fa;
        --gradient-gold: linear-gradient(135deg, #d4af37, #f3d98b, #d4af37);
        --gradient-dark: linear-gradient(135deg, #0c0c0c, #1a1a1a, #0c0c0c);
        --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
        --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        --transition-medium: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        --transition-fast: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Enhanced Global Styles */
    body {
        overflow-x: hidden;
        font-family: 'Lato', sans-serif;
        background: var(--dark-color);
        color: #fff;
    }

    .wrapper {
        position: relative;
        overflow-x: hidden;
    }

    /* Enhanced Header Animations */
    .header {
        background: rgba(29, 29, 29, 0.95);
        backdrop-filter: blur(10px);
        animation: slideDown 0.8s ease-out;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        position: fixed;
        width: 100%;
        z-index: 1000;
        transition: var(--transition-medium);
    }

    .header.scrolled {
        padding: 10px 0;
        background: rgba(13, 13, 13, 0.98);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Enhanced Logo Animation */
    #logo {
        transition: var(--transition-medium);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }

    #logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.4));
    }


    /* Winning Section Styles */
    .winning-section {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
        position: relative;
        padding: 100px 0;
    }

    /* Animated Background */
    .bg-animation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .bg-animation div {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        animation: float 20s infinite linear;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
        top: 60%;
        right: 10%;
        animation-delay: 5s;
    }

    .circle-3 {
        width: 150px;
        height: 150px;
        bottom: 20%;
        left: 20%;
        animation-delay: 10s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
            opacity: 0.3;
        }

        50% {
            transform: translateY(-20px) rotate(180deg);
            opacity: 0.5;
        }
    }

    /* Section Header */
    .section-title {
        font-size: 42px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
        border-radius: 2px;
    }

    .title-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 25px 0 40px;
    }

    .title-divider .line {
        width: 150px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }

    .title-divider .icon {
        color: #d4af37;
        margin: 0 20px;
        font-size: 20px;
        animation: spin 4s infinite linear;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Equal Height Content Cards */
    .equal-height {
        display: flex;
        flex-wrap: wrap;
    }

    .content-card {
        background: rgba(30, 30, 30, 0.8);
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(10px);
    }

    .content-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .content-card:hover::before {
        opacity: 1;
    }

    .content-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.4);
    }

    .card-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #d4af37, #f3d98b);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 30px;
        color: #000;
        transition: all 0.3s ease;
    }

    .content-card:hover .card-icon {
        transform: scale(1.1) rotate(360deg);
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    }

    .card-title {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .card-text {
        color: #ccc;
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 25px;
    }

    .card-footer {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .gold-text {
        color: #d4af37;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Winning Badge */
    .winning-badge {
        margin: 60px 0;
        position: relative;
        z-index: 2;
    }

    .badge-circle {
        position: relative;
        width: 280px;
        height: 280px;
        margin: 0 auto 40px;
    }

    .winning-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        animation: pulse 2s infinite alternate;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
        }

        100% {
            transform: scale(1.05);
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
        }
    }

    .badge-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        animation: glow 3s infinite alternate;
    }

    @keyframes glow {
        0% {
            opacity: 0.3;
            transform: translate(-50%, -50%) scale(1);
        }

        100% {
            opacity: 0.6;
            transform: translate(-50%, -50%) scale(1.1);
        }
    }

    /* Winning Text */
    .winning-text {
        margin: 40px 0;
    }

    .winning-title {
        font-size: 48px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .animate-text span {
        display: block;
    }

    .text-white {
        color: #fff;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .text-gold {
        color: #d4af37;
        text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
        animation: shine 3s infinite alternate;
        background: linear-gradient(135deg, #d4af37, #f3d98b, #d4af37);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 100%;
        animation: shine 3s infinite alternate;
    }

    @keyframes shine {
        0% {
            background-position: -100% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    .winning-subtitle {
        margin-top: 15px;
    }

    .winning-subtitle p {
        color: #aaa;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        display: inline-block;
        padding: 0 20px;
    }

    .winning-subtitle p::before,
    .winning-subtitle p::after {
        content: '✦';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #d4af37;
        font-size: 12px;
    }

    .winning-subtitle p::before {
        left: 0;
    }

    .winning-subtitle p::after {
        right: 0;
    }

    /* Stats Counter */
    .stats-counter {
        margin: 50px 0;
        padding: 40px;
        background: rgba(30, 30, 30, 0.6);
        border-radius: 20px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .stat-item {
        text-align: center;
        padding: 20px;
    }

    .stat-number {
        font-size: 48px;
        font-weight: 800;
        color: #d4af37;
        margin-bottom: 10px;
        line-height: 1;
    }

    .stat-label {
        color: #ccc;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* CTA Button */
    .cta-button {
        text-align: center;
    }

    .btn-gold {
        background: linear-gradient(135deg, #d4af37, #f3d98b, #d4af37);
        color: #000;
        padding: 18px 40px;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        border-radius: 50px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        display: inline-block;
        text-decoration: none;
    }

    .btn-gold::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.7s ease;
    }

    .btn-gold:hover::before {
        left: 100%;
    }

    .btn-gold:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }

    .cta-subtext {
        color: #aaa;
        font-size: 14px;
        margin-top: 15px;
        letter-spacing: 1px;
    }

    /* Brand Logo */
    .brand-logo {
        text-align: center;
    }

    .brand-image {
        width: 200px;
        margin: 0 auto 20px;
        filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
        transition: all 0.3s ease;
    }

    .brand-image:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.5));
    }

    .brand-tagline {
        color: #aaa;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .brand-tagline::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .section-title {
            font-size: 36px;
        }

        .winning-title {
            font-size: 36px;
        }

        .badge-circle {
            width: 220px;
            height: 220px;
        }

        .stat-number {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .winning-section {
            padding: 60px 0;
        }

        .content-card {
            padding: 30px;
        }

        .winning-title {
            font-size: 28px;
        }

        .stats-counter {
            padding: 20px;
        }

        .btn-gold {
            padding: 15px 30px;
            font-size: 16px;
        }

        .brand-image {
            width: 150px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 28px;
        }

        .card-title {
            font-size: 20px;
        }

        .winning-title span {
            display: inline;
        }

        .badge-circle {
            width: 180px;
            height: 180px;
        }

        .stat-item {
            padding: 10px;
        }

        .stat-number {
            font-size: 28px;
        }
    }

    /* Enhanced Bitcoin Stats */
    ul.bitcoin-stats li {
        position: relative;
        overflow: hidden;
        padding: 10px 15px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        transition: var(--transition-medium);
    }

    ul.bitcoin-stats li::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: var(--transition-medium);
    }

    ul.bitcoin-stats li:hover::before {
        left: 100%;
    }

    ul.bitcoin-stats li:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }

    /* Enhanced Buttons */
    .btn-primary {
        background: var(--gradient-gold);
        border: none;
        padding: 12px 32px;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        transition: var(--transition-medium);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition-medium);
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        background: linear-gradient(135deg, #e6c76b, #ffd700, #e6c76b);
    }

    .btn-primary:active {
        transform: translateY(-1px);
    }

    /* Enhanced Navigation */
    .site-navigation {
        background: transparent;
    }

    .navbar-nav>li>a {
        position: relative;
        overflow: hidden;
        transition: var(--transition-medium);
    }

    .navbar-nav>li>a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--gradient-gold);
        transition: var(--transition-medium);
    }

    .navbar-nav>li.active>a::after,
    .navbar-nav>li:hover>a::after {
        width: 100%;
    }

    .navbar-nav>li:hover>a {
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    /* Enhanced Slider */


    .slider-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        z-index: 2;
    }

    .slide-title {
        font-size: 4.5rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 30px;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .slide-title span {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shine 3s ease-in-out infinite;
    }

    @keyframes shine {

        0%,
        100% {
            background-position: -200% center;
        }

        50% {
            background-position: 200% center;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Enhanced Features Section */
    .features {
        /* background: var(--gradient-dark); */
        position: relative;
        overflow: hidden;
    }

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gradient-gold);
        animation: slideIn 2s ease-out;
    }

    @keyframes slideIn {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    .feature-box {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 40px 30px;
        margin: 20px 0;
        transition: var(--transition-medium);
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
    }

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: var(--transition-medium);
    }

    .feature-box:hover::before {
        transform: translateX(100%);
    }

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-glow);
        border-color: rgba(212, 175, 55, 0.3);
        background: rgba(255, 255, 255, 0.08);
    }

    .feature-box h3 {
        color: var(--secondary-color);
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .feature-box h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--gradient-gold);
        border-radius: 2px;
    }

    /* Enhanced About Section */
    .about-us {
        position: relative;
        overflow: hidden;
    }

    .about-us::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .title-head {
        position: relative;
        display: inline-block;
        margin-bottom: 40px;
    }

    .title-head::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient-gold);
        border-radius: 2px;
    }

    .title-head span {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .img-about-us {
        animation: float 6s ease-in-out infinite;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* Enhanced Tabs */
    .nav-tabs {
        border-bottom: 2px solid rgba(212, 175, 55, 0.2);
        margin-bottom: 30px;
    }

    .nav-tabs>li>a {
        color: #999;
        font-weight: 600;
        padding: 12px 25px;
        border: none;
        border-radius: 8px 8px 0 0;
        margin-right: 5px;
        transition: var(--transition-medium);
        position: relative;
        overflow: hidden;
    }

    .nav-tabs>li>a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-gold);
        transform: translateY(100%);
        transition: var(--transition-medium);
    }

    .nav-tabs>li.active>a::before,
    .nav-tabs>li>a:hover::before {
        transform: translateY(0);
    }

    .nav-tabs>li.active>a,
    .nav-tabs>li>a:hover {
        color: var(--secondary-color);
        background: rgba(212, 175, 55, 0.1);
    }

    .tab-content {
        padding: 30px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 0 15px 15px 15px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        animation: fadeIn 0.5s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Enhanced Image Block Sections */
    .image-block,
    .image-block2 {
        position: relative;
        overflow: hidden;
    }

    .image-block::before,
    .image-block2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgb(29 29 29 / 4%));
        z-index: 1;
    }

    .img-block-left {
        position: relative;
        z-index: 2;
    }

    .feature {
        padding: 25px;
        margin-bottom: 25px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: var(--transition-medium);
        position: relative;
        overflow: hidden;
    }

    .feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--gradient-gold);
        transform: scaleY(0);
        transition: var(--transition-medium);
        transform-origin: top;
    }

    .feature:hover::before {
        transform: scaleY(1);
    }

    .feature:hover {
        transform: translateX(10px);
        box-shadow: var(--shadow-glow);
        background: rgba(255, 255, 255, 0.08);
    }

    .feature-icon img {
        transition: var(--transition-medium);
        filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    }

    .feature:hover .feature-icon img {
        transform: scale(1.1) rotate(5deg);
    }

    /* Enhanced Winning Section */
    .winning-section {
        position: relative;
        overflow: hidden;
    }

    .winning-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('Home/Assets/images/banner/casino-bg.jpg') center/cover fixed;
        animation: zoomParallax 20s infinite alternate;
        z-index: 1;
    }

    @keyframes zoomParallax {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.1);
        }
    }

    .top-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(13, 13, 13, 0.8));
        z-index: 2;
    }

    .top-bg>.container {
        position: relative;
        z-index: 3;
    }

    .content-box {
        background: rgba(13, 13, 13, 0.85);
        backdrop-filter: blur(10px);
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 30px;
        margin: 20px 0;
        position: relative;
        overflow: hidden;
        transition: var(--transition-medium);
    }

    .content-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-gold);
        opacity: 0;
        transition: var(--transition-medium);
        z-index: -1;
    }

    .content-box:hover::before {
        opacity: 0.1;
    }

    .content-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow);
        border-color: var(--secondary-color);
    }

    /* Enhanced Big Win Text */
    .winning-section h2 {
        position: relative;
        z-index: 3;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from {
            text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
        }

        to {
            text-shadow: 0 4px 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
        }
    }

    /* Enhanced Why Join Section */
    .why-join ul {
        list-style: none;
        padding: 0;
    }

    .why-join li {
        padding: 15px 0;
        position: relative;
        padding-left: 40px;
        transition: var(--transition-medium);
    }

    .why-join li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 15px;
        width: 28px;
        height: 28px;
        background: var(--gradient-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #000;
        transition: var(--transition-medium);
    }

    .why-join li:hover {
        transform: translateX(10px);
        color: var(--secondary-color);
    }

    .why-join li:hover::before {
        transform: scale(1.2) rotate(360deg);
        box-shadow: var(--shadow-glow);
    }

    /* Enhanced Terms Section */
    .terms-section {
        position: relative;
        overflow: hidden;
    }

    .terms-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-gold);
        opacity: 0.1;
        z-index: 1;
    }

    .terms-section>.container-fluid {
        position: relative;
        z-index: 2;
    }

    .terms-section h3 {
        color: var(--secondary-color);
        position: relative;
        padding-left: 40px;
        margin-bottom: 20px;
    }

    .terms-section h3 span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        background: var(--gradient-gold);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #000;
        font-size: 14px;
        transition: var(--transition-medium);
    }

    .terms-section div:hover h3 span {
        transform: translateY(-50%) rotate(360deg);
        box-shadow: var(--shadow-glow);
    }

    /* Enhanced Call to Action */
    .call-action-all {
        position: relative;
        overflow: hidden;
    }

    .call-action-all::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('Home/Assets/images/backgrounds/call-to-action-bg.jpg') center/cover fixed;
        animation: panBackground 20s linear infinite;
        z-index: 1;
    }

    @keyframes panBackground {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    .call-action-all-overlay {
        position: relative;
        z-index: 2;
        background: linear-gradient(45deg, rgba(13, 13, 13, 0.9), rgba(212, 175, 55, 0.2));
    }

    .action-text h2 {
        font-size: 3rem;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shine 3s ease-in-out infinite;
    }

    /* Enhanced Footer */
    .footer {
        background: var(--gradient-dark);
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gradient-gold);
    }

    .top-footer {
        position: relative;
        z-index: 2;
    }

    .footer .menu ul li a {
        position: relative;
        padding-left: 0;
        transition: var(--transition-medium);
    }

    .footer .menu ul li a::before {
        content: '›';
        position: absolute;
        left: 0;
        opacity: 0;
        transform: translateX(-10px);
        transition: var(--transition-medium);
        color: var(--secondary-color);
    }

    .footer .menu ul li a:hover {
        padding-left: 15px;
        color: var(--secondary-color);
    }

    .footer .menu ul li a:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .social-footer a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin: 0 5px;
        transition: var(--transition-medium);
        position: relative;
        overflow: hidden;
    }

    .social-footer a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-gold);
        transform: scale(0);
        transition: var(--transition-medium);
        border-radius: 50%;
        z-index: 1;
    }

    .social-footer a:hover::before {
        transform: scale(1);
    }

    .social-footer a i {
        position: relative;
        z-index: 2;
        transition: var(--transition-medium);
    }

    .social-footer a:hover i {
        color: #000;
        transform: rotate(360deg);
    }

    /* Loading Animation */
    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--dark-color);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s, visibility 0.5s;
    }

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loader {
        width: 80px;
        height: 80px;
        position: relative;
    }

    .loader-ring {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 4px solid transparent;
        border-top-color: var(--secondary-color);
        animation: spin 1s linear infinite;
    }

    .loader-ring:nth-child(2) {
        width: 70%;
        height: 70%;
        margin-top: -85px;
        border-top-color: var(--primary-color);
        animation: spin 1.5s linear infinite reverse;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Scroll Progress Bar */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: var(--gradient-gold);
        z-index: 1001;
        transition: width 0.1s;
    }

    /* Back to Top Button Enhancement */
    #back-to-top {
        background: var(--gradient-gold);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #000;
        font-size: 20px;
        box-shadow: var(--shadow-glow);
        transition: var(--transition-medium);
        opacity: 0;
        visibility: hidden;
    }

    #back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    #back-to-top:hover {
        transform: scale(1.1) rotate(360deg);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }

    /* Particle Background Effect */
    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 50%;
        animation: floatParticle linear infinite;
    }

    @keyframes floatParticle {
        0% {
            transform: translateY(100vh) translateX(0);
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translateY(-100px) translateX(100px);
            opacity: 0;
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .slide-title {
            font-size: 2.5rem;
        }

        .action-text h2 {
            font-size: 2rem;
        }

        .feature-box {
            padding: 20px 15px;
        }

        .content-box {
            padding: 20px;
        }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #1a1a1a;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gradient-gold);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #e6c76b, #ffd700);
    }

    .navbar-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
    }

    .header-logo img {
        height: 50px;
    }

    .header-menu .nav-menu {
        display: flex;
        list-style: none;
        gap: 25px;
        margin: 0;
        padding: 0;
    }

    .header-menu .nav-menu li a {
        color: #fff;
        text-transform: uppercase;
        font-weight: 500;
        padding: 8px 10px;
        transition: 0.3s;
    }

    .header-menu .nav-menu li a:hover {
        color: #ffd700;
    }

    .header-auth {
        display: flex;
        gap: 10px;
    }

    .header-auth .btn {
        text-transform: capitalize;
        padding: 6px 15px;
    }

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
    }

    @media(max-width: 991px) {
        .header-menu {
            display: none;
        }

        .header-auth {
            display: none;
        }

        .mobile-toggle {
            display: block;
        }
    }

    .mobile-nav {
        padding: 15px;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
    }

    .mobile-nav ul li {
        padding: 10px 0;
    }

    .mobile-nav ul li a {
        color: #fff;
    }

    /* Advantages Section Styles */
    .advantages-section {
        background: transparent !important;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .advantages-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 48px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .section-title .highlight {
        background: linear-gradient(135deg, #d4af37, #f3d98b, #d4af37);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 100%;
        animation: shine 3s infinite alternate;
    }

    @keyframes shine {
        0% {
            background-position: -100% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    .section-subtitle {
        color: #aaa;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 25px;
        line-height: 1.6;
    }

    .title-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .divider-line {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }

    .divider-icon {
        color: #d4af37;
        font-size: 20px;
        animation: spin 4s infinite linear;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Advantage Cards */
    .advantages-grid {
        margin: 40px 0;
    }

    .advantage-card {
        background: rgba(30, 30, 30, 0.8);
        border-radius: 20px;
        padding: 40px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(10px);
    }

    .advantage-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .advantage-card:hover::before {
        opacity: 1;
    }

    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 20px 40px rgba(212, 175, 55, 0.15),
            0 0 0 1px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.3);
    }

    /* Card Icon */
    .card-icon {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 30px;
    }

    .card-icon i {
        position: relative;
        z-index: 2;
        font-size: 36px;
        color: #d4af37;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }

    .icon-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        border-radius: 20px;
        transform: rotate(45deg);
        transition: all 0.3s ease;
    }

    .advantage-card:hover .icon-bg {
        transform: rotate(135deg);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    }

    .advantage-card:hover .card-icon i {
        transform: scale(1.1);
        color: #f3d98b;
    }

    /* Card Content */
    .card-content {
        flex: 1;
        text-align: center;
        margin-bottom: 25px;
    }

    .card-title {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .card-text {
        color: #bbb;
        font-size: 15px;
        line-height: 1.8;
        margin: 0;
    }

    /* Card Footer */
    .card-footer {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        margin-top: auto;
    }

    .advantage-tag {
        display: inline-block;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        color: #d4af37;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .advantage-card:hover .advantage-tag {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.15));
        transform: scale(1.05);
    }

    /* Features Banner */
    .features-banner {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 30, 30, 0.9));
        border-radius: 20px;
        padding: 40px 30px;
        margin: 60px 0;
        border: 1px solid rgba(212, 175, 55, 0.2);
        position: relative;
        overflow: hidden;
    }

    .features-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23d4af37" opacity="0.05" d="M50,0C22.4,0,0,22.4,0,50s22.4,50,50,50s50-22.4,50-50S77.6,0,50,0z"/></svg>');
        background-size: 100px;
        opacity: 0.5;
    }

    .feature-stat {
        position: relative;
        z-index: 2;
    }

    .stat-number {
        font-size: 42px;
        font-weight: 800;
        color: #d4af37;
        margin-bottom: 10px;
        line-height: 1;
    }

    .stat-label {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /* CTA Button */
    .btn-advantage {
        display: inline-block;
        background: linear-gradient(135deg, #d4af37, #f3d98b, #d4af37);
        color: #000;
        padding: 20px 50px;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .btn-advantage::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.7s ease;
    }

    .btn-advantage:hover::before {
        left: 100%;
    }

    .btn-advantage:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    }

    .btn-advantage i {
        margin-right: 10px;
        font-size: 20px;
        vertical-align: middle;
    }

    .cta-subtext {
        color: #aaa;
        font-size: 14px;
        margin-top: 20px;
        letter-spacing: 1px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .section-title {
            font-size: 36px;
        }

        .advantage-card {
            padding: 30px 25px;
        }

        .card-title {
            font-size: 20px;
        }

        .stat-number {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .features-row {
            display: block !important;
        }

        .about-us {
            text-align: center;
        }

        .tab-content {
            margin-bottom: 10px !important;
        }

        .advantages-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 28px;
        }

        .advantage-card {
            padding: 25px 20px;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
        }

        .card-icon i {
            font-size: 30px;
        }

        .features-banner {
            padding: 30px 20px;
        }

        .stat-number {
            font-size: 28px;
        }

        .btn-advantage {
            padding: 18px 40px;
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 24px;
        }

        .section-subtitle {
            font-size: 16px;
        }

        .title-divider {
            gap: 10px;
        }

        .divider-line {
            width: 50px;
        }

        .advantage-card {
            padding: 20px;
        }

        .features-banner .row>div {
            margin-bottom: 20px;
        }

        .features-banner .row>div:last-child {
            margin-bottom: 0;
        }
    }

    /* Advantages Section Styles */
    .advantages-section {
        background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }

    .advantages-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
        pointer-events: none;
    }

    /* Title Styles */
    .title-head {
        font-size: 42px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 40px;
        position: relative;
        display: inline-block;
    }

    .title-head::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #d4af37, transparent);
        border-radius: 2px;
    }

    .title-head span {
        color: #d4af37;
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    }

    /* Equal Height Rows */
    .equal-height-row {
        display: flex;
        flex-wrap: wrap;
    }

    /* Feature Cards */
    .feature-card {
        background: rgba(30, 30, 30, 0.7);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 20px;
        height: 100%;
        display: flex;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(5px);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .feature-card:hover::before {
        left: 100%;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow:
            0 10px 30px rgba(212, 175, 55, 0.15),
            0 0 0 1px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.3);
        background: rgba(40, 40, 40, 0.8);
    }

    /* Feature Icon */
    .feature-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 25px;
        position: relative;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    }

    .feature-icon i {
        font-size: 32px;
        color: #d4af37;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon i {
        color: #f3d98b;
        transform: scale(1.1);
    }

    /* Feature Content */
    .feature-content {
        flex: 1;
    }

    .feature-title {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .feature-card:hover .feature-title {
        color: #d4af37;
    }

    .feature-card p {
        color: #bbb;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
        transition: color 0.3s ease;
    }

    .feature-card:hover p {
        color: #ddd;
    }

    /* Gap between rows */
    .gap-20 {
        clear: both;
        height: 20px;
    }

    /* Right Side Styles */
    .bg-image-1 {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        position: relative;
        overflow: hidden;
    }

    .bg-image-1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23d4af37" opacity="0.03" d="M50,0C22.4,0,0,22.4,0,50s22.4,50,50,50s50-22.4,50-50S77.6,0,50,0z"/></svg>');
        background-size: 150px;
        opacity: 0.3;
    }

    .image-side-content {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
    }

    .right-image-container {
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Casino Animation */
    .casino-animation {
        background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.8));
        border-radius: 20px;
        padding: 40px 30px;
        margin-bottom: 40px;
        border: 2px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .casino-animation::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
        animation: shine 3s infinite linear;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    .slot-machine {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .slot-reel {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #d4af37, #f3d98b);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        color: #000;
        animation: slotSpin 3s infinite alternate;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .slot-reel:nth-child(2) {
        animation-delay: 0.5s;
    }

    .slot-reel:nth-child(3) {
        animation-delay: 1s;
    }

    @keyframes slotSpin {

        0%,
        100% {
            transform: translateY(0) rotateX(0);
        }

        50% {
            transform: translateY(-20px) rotateX(360deg);
        }
    }

    .animation-text {
        font-size: 28px;
        font-weight: 800;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
        animation: glow 2s infinite alternate;
    }

    @keyframes glow {
        0% {
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
        }

        100% {
            text-shadow: 0 2px 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
        }
    }

    /* Right Side Stats */
    .right-side-stats {
        background: rgba(30, 30, 30, 0.8);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .stat-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .stat-item i {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #d4af37;
        margin-right: 20px;
        transition: all 0.3s ease;
    }

    .stat-item:hover i {
        transform: scale(1.1);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    }

    .stat-info h4 {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 5px 0;
    }

    .stat-info p {
        color: #bbb;
        font-size: 14px;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .ts-padding {
            padding: 40px 30px;
        }

        .title-head {
            font-size: 36px;
        }

        .feature-card {
            padding: 25px 20px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            margin-right: 20px;
        }

        .feature-icon i {
            font-size: 26px;
        }

        .feature-title {
            font-size: 18px;
        }

        .casino-animation {
            padding: 30px 20px;
        }

        .slot-reel {
            width: 60px;
            height: 60px;
            font-size: 18px;
        }

        .animation-text {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .row>div {
            margin-bottom: 20px;
        }

        .feature-card {
            flex-direction: column;
            text-align: center;
            padding: 30px;
        }

        .feature-icon {
            margin: 0 auto 20px;
        }

        .feature-content {
            text-align: center;
        }

        .stat-item {
            justify-content: center;
            text-align: left;
        }

        .right-image-container {
            max-width: 100%;
        }
    }

    @media (max-width: 576px) {
        .title-head {
            font-size: 28px;
        }

        .ts-padding {
            padding: 30px 20px;
        }

        .feature-card {
            padding: 25px;
        }

        .slot-machine {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .slot-reel {
            width: 70px;
            height: 70px;
        }

        .animation-text {
            font-size: 18px;
        }
    }

    .long-term-goals-section {
        background: transparent !important;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .long-term-goals-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    /* Equal Height Columns */
    .row.align-items-center {
        min-height: 700px;
    }

    .goal-visual,
    .goal-content {
        height: 100%;
        display: flex;
        align-items: center;
    }

    /* Visual Container */
    .visual-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .image-wrapper {
        position: relative;
        border-radius: 25px;
        overflow: hidden;
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.5),
            0 0 0 2px rgba(212, 175, 55, 0.2),
            inset 0 0 80px rgba(212, 175, 55, 0.1);
        transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .image-wrapper:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow:
            0 40px 80px rgba(0, 0, 0, 0.6),
            0 0 0 3px rgba(212, 175, 55, 0.3),
            inset 0 0 100px rgba(212, 175, 55, 0.15);
    }

    .goal-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.8s ease;
    }

    .image-wrapper:hover .goal-image {
        transform: scale(1.05);
    }

    .image-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 110%;
        height: 110%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .image-wrapper:hover .image-glow {
        opacity: 1;
    }

    .image-frame {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid transparent;
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent 40%);
        pointer-events: none;
        transition: all 0.6s ease;
    }

    .image-wrapper:hover .image-frame {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent 40%);
    }

    /* Floating Stats */
    .floating-stats {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .stat-bubble {
        position: absolute;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.7));
        border-radius: 50px;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        animation: floatBubble 4s ease-in-out infinite;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10;
    }

    .stat-bubble:nth-child(2) {
        animation-delay: 1s;
    }

    .stat-bubble:nth-child(3) {
        animation-delay: 2s;
    }

    @keyframes floatBubble {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .stat-bubble:hover {
        background: linear-gradient(135deg, rgba(212, 175, 55, 1), rgba(212, 175, 55, 0.8));
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    }

    .stat-bubble i {
        font-size: 18px;
        color: #000;
    }

    .stat-bubble span {
        color: #000;
        font-weight: 700;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Content Wrapper */
    .content-wrapper {
        padding: 50px;
        background: rgba(30, 30, 30, 0.5);
        border-radius: 30px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        backdrop-filter: blur(10px);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-subtitle {
        display: block;
        color: #d4af37;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .section-title {
        font-size: 48px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .section-title .highlight {
        background: linear-gradient(135deg, #d4af37, #f3d98b, #d4af37);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 100%;
        animation: shine 3s infinite alternate;
    }

    @keyframes shine {
        0% {
            background-position: -100% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    .title-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .divider-line {
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }

    .divider-icon {
        color: #d4af37;
        font-size: 20px;
        animation: spin 4s infinite linear;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Goal Intro */
    .goal-intro {
        margin-bottom: 40px;
    }

    .intro-text {
        color: #ccc;
        font-size: 18px;
        line-height: 1.8;
        text-align: center;
    }

    .gold-text {
        color: #d4af37;
        font-weight: 700;
    }

    /* Goal Roadmap */
    .goal-roadmap {
        margin-bottom: 40px;
    }

    .roadmap-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .roadmap-title {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .roadmap-title i {
        color: #d4af37;
        font-size: 28px;
    }

    /* Goals List */
    .goals-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .goal-item {
        background: rgba(40, 40, 40, 0.6);
        border-radius: 15px;
        padding: 25px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: all 0.4s ease;
        border: 1px solid transparent;
    }

    .goal-item:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateY(-5px);
    }

    .goal-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .goal-item:hover .goal-icon {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
        transform: scale(1.1) rotate(5deg);
    }

    .goal-icon i {
        font-size: 24px;
        color: #d4af37;
    }

    .goal-details {
        flex: 1;
    }

    .goal-title {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .goal-description {
        color: #bbb;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    /* Goal Philosophy */
    .goal-philosophy {
        margin-bottom: 40px;
    }

    .philosophy-card {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        border-radius: 20px;
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 25px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.4s ease;
    }

    .philosophy-card:hover {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.1));
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateY(-5px);
    }

    .philosophy-icon {
        font-size: 36px;
        color: #d4af37;
        min-width: 60px;
        text-align: center;
    }

    .philosophy-content {
        flex: 1;
    }

    .philosophy-title {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .philosophy-text {
        color: #ccc;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    /* Goal CTA */
    .goal-cta {
        text-align: center;
    }

    .goal-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        background: linear-gradient(135deg, #d4af37, #f3d98b, #d4af37);
        color: #000;
        padding: 18px 40px;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        margin-bottom: 30px;
    }

    .goal-cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        color: #000;
    }

    .goal-cta-btn i {
        font-size: 24px;
    }

    .brand-logo {
        margin-top: 20px;
    }

    .brand-image {
        width: 150px;
        margin: 0 auto 15px;
        filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
        transition: all 0.3s ease;
    }

    .brand-image:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.5));
    }

    .brand-tagline {
        color: #aaa;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .row.align-items-center {
            min-height: auto;
        }

        .goals-list {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 992px) {
        .long-term-goals-section {
            padding: 60px 0;
        }

        .goal-visual,
        .goal-content {
            margin-bottom: 50px;
        }

        .content-wrapper {
            padding: 40px 30px;
        }

        .section-title {
            font-size: 36px;
        }

        .goal-item {
            padding: 20px;
        }
    }

    @media (max-width: 768px) {
        .visual-container {
            max-width: 100%;
        }

        .stat-bubble {
            padding: 10px 15px;
        }

        .stat-bubble span {
            font-size: 12px;
        }

        .section-title {
            font-size: 28px;
        }

        .intro-text {
            font-size: 16px;
        }

        .goal-cta-btn {
            padding: 15px 30px;
            font-size: 16px;
            width: 100%;
        }

        .philosophy-card {
            flex-direction: column;
            text-align: center;
        }

        .goal-item {
            flex-direction: column;
            text-align: center;
        }

        .goal-icon {
            margin: 0 auto 15px;
        }
    }

    @media (max-width: 576px) {
        .content-wrapper {
            padding: 30px 20px;
        }

        .section-subtitle {
            font-size: 14px;
            letter-spacing: 2px;
        }

        .title-divider {
            gap: 10px;
        }

        .divider-line {
            width: 50px;
        }

        .roadmap-title {
            font-size: 20px;
            flex-direction: column;
            gap: 10px;
        }
    }

     /* Why Join Team Section */
    .why-join-team {
        background: transparent;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .why-join-team::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
        pointer-events: none;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 60px;
    }

    .section-subtitle {
        display: block;
        color: #d4af37;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .section-title {
        font-size: 48px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-title .highlight {
        color: #d4af37;
        position: relative;
        display: inline-block;
    }

    .section-title .highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(212, 175, 55, 0.2);
        z-index: -1;
        border-radius: 4px;
    }

    .section-description {
        color: #aaa;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 25px;
        line-height: 1.6;
    }

    .title-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .divider-line {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }

    .divider-icon {
        color: #d4af37;
        font-size: 20px;
        animation: spin 4s infinite linear;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Benefit Cards */
    .benefit-card {
        background: rgba(30, 30, 30, 0.8);
        border-radius: 20px;
        padding: 40px 30px;
        height: 100%;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(10px);
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .benefit-card:hover::before {
        opacity: 1;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 
            0 20px 40px rgba(212, 175, 55, 0.15),
            0 0 0 1px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.3);
        background: rgba(40, 40, 40, 0.9);
    }

    /* Benefit Icon */
    .benefit-icon {
        position: relative;
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .benefit-icon i {
        position: relative;
        z-index: 2;
        font-size: 36px;
        color: #d4af37;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }

    .icon-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .benefit-card:hover .icon-glow {
        opacity: 1;
    }

    .benefit-card:hover .benefit-icon i {
        transform: scale(1.1) rotate(5deg);
        color: #f3d98b;
    }

    /* Benefit Content */
    .benefit-content {
        position: relative;
        z-index: 2;
        margin-bottom: 25px;
    }

    .benefit-title {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .benefit-card:hover .benefit-title {
        color: #d4af37;
    }

    .benefit-description {
        color: #bbb;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .benefit-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .benefit-features li {
        color: #ddd;
        font-size: 14px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.3s ease;
    }

    .benefit-card:hover .benefit-features li {
        color: #fff;
    }

    .benefit-features i {
        color: #d4af37;
        font-size: 12px;
    }

    /* Benefit Tag */
    .benefit-tag {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 2;
    }

    .benefit-tag span {
        display: inline-block;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        color: #d4af37;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .benefit-card:hover .benefit-tag span {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.15));
        transform: scale(1.05);
    }

    /* Additional Perks */
    .additional-perks {
        margin: 60px 0;
        padding: 40px;
        background: rgba(30, 30, 30, 0.5);
        border-radius: 20px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .perks-header {
        margin-bottom: 40px;
    }

    .perks-header h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .perks-header p {
        color: #aaa;
        font-size: 16px;
        margin: 0;
    }

    .perk-item {
        text-align: center;
        padding: 25px 15px;
        background: rgba(40, 40, 40, 0.6);
        border-radius: 15px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .perk-item:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.2);
        transform: translateY(-5px);
    }

    .perk-item i {
        font-size: 36px;
        color: #d4af37;
        margin-bottom: 15px;
        display: block;
        transition: all 0.3s ease;
    }

    .perk-item:hover i {
        transform: scale(1.1) rotate(5deg);
    }

    .perk-item h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .perk-item p {
        color: #bbb;
        font-size: 14px;
        margin: 0;
    }

    /* CTA Section */
    .team-cta {
        margin-top: 60px;
    }

    .cta-content {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 30, 30, 0.9));
        border-radius: 25px;
        padding: 50px 40px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        position: relative;
        overflow: hidden;
    }

    .cta-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23d4af37" opacity="0.05" d="M50,0C22.4,0,0,22.4,0,50s22.4,50,50,50s50-22.4,50-50S77.6,0,50,0z"/></svg>');
        background-size: 100px;
        opacity: 0.5;
    }

    .cta-content h3 {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }

    .cta-content p {
        color: #aaa;
        font-size: 18px;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    /* CTA Buttons */
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

    .btn-apply,
    .btn-learn {
        padding: 15px 35px;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-apply {
        background: linear-gradient(135deg, #d4af37, #f3d98b);
        color: #000;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }

    .btn-apply:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
        color: #000;
    }

    .btn-learn {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(212, 175, 55, 0.5);
    }

    .btn-learn:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.8);
        transform: translateY(-3px);
        color: #fff;
    }

    /* CTA Stats */
    .cta-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 30px;
        position: relative;
        z-index: 2;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item h4 {
        color: #d4af37;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 5px;
        line-height: 1;
    }

    .stat-item p {
        color: #aaa;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .section-title {
            font-size: 36px;
        }
        
        .benefit-card {
            padding: 30px 25px;
        }
        
        .benefit-title {
            font-size: 20px;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-apply,
        .btn-learn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        
        .cta-stats {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .why-join-team {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .additional-perks {
            padding: 30px 20px;
        }
        
        .cta-content {
            padding: 40px 30px;
        }
        
        .cta-content h3 {
            font-size: 26px;
        }
        
        .stat-item h4 {
            font-size: 28px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 24px;
        }
        
        .section-subtitle {
            font-size: 14px;
            letter-spacing: 2px;
        }
        
        .title-divider {
            gap: 10px;
        }
        
        .divider-line {
            width: 50px;
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
        }
        
        .benefit-icon i {
            font-size: 30px;
        }
        
        .cta-stats {
            flex-direction: column;
            gap: 20px;
        }
        
        .perk-item {
            margin-bottom: 15px;
        }
    }

      /* Terms & Conditions Section */
    .terms-conditions-section {
        background: transparent;
        overflow: hidden;
        position: relative;
    }

    .terms-conditions-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    /* Left Side Image */
    .image-side {
        padding: 0;
        position: relative;
    }

    .image-container {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 700px;
        overflow: hidden;
    }

    .feature-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .image-container:hover .feature-image {
        transform: scale(1.05);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            180deg, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(212, 175, 55, 0.2) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px;
    }

    .overlay-content {
        color: #fff;
        max-width: 400px;
    }

    .overlay-content i {
        font-size: 64px;
        color: #d4af37;
        margin-bottom: 20px;
        display: block;
    }

    .overlay-content h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

    .overlay-content p {
        font-size: 16px;
        color: #ddd;
        line-height: 1.6;
        margin: 0;
    }

    /* Right Side Content */
    .terms-content {
        background: transparent !important;
        padding: 60px 40px;
        min-height: 700px;
        display: flex;
        align-items: center;
    }

    .content-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    /* Terms Header */
    .terms-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-badge {
        display: inline-block;
        background: rgba(0, 0, 0, 0.1);
        color: #000;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 48px;
        font-weight: 800;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-title .highlight {
        color: #1e3c72;
        position: relative;
        display: inline-block;
    }

    .section-title .highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(30, 60, 114, 0.2);
        z-index: -1;
        border-radius: 4px;
    }

    .section-description {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .title-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .divider-line {
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #1e3c72, transparent);
    }

    .divider-icon {
        font-size: 20px;
        animation: spin 4s infinite linear;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Terms List */
    .terms-list {
        margin-bottom: 40px;
    }

    .term-item {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 25px;
        position: relative;
        overflow: hidden;
        border-left: 5px solid #1e3c72;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .term-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.95);
        border-left-color: #d4af37;
    }

    .term-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 14px;
        font-weight: 800;
        color: rgba(0, 0, 0, 0.1);
        font-size: 60px;
        line-height: 1;
        opacity: 0.3;
    }

    .term-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .term-item:hover .term-icon {
        background: linear-gradient(135deg, #d4af37, #e6c76b);
        transform: scale(1.1) rotate(5deg);
    }

    .term-icon i {
        font-size: 24px;
        color: #fff;
    }

    .term-details {
        flex: 1;
    }

    .term-title {
        color: #000;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .term-description p {
        color: #333;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .term-example {
        background: rgba(30, 60, 114, 0.1);
        border-radius: 10px;
        padding: 15px;
        margin-top: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .term-example i {
        color: #1e3c72;
        font-size: 18px;
    }

    .term-example span {
        color: #000;
        font-size: 14px;
        font-weight: 600;
    }

    .term-features {
        display: flex;
        gap: 20px;
        margin-top: 15px;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .feature i {
        color: #1e3c72;
        font-size: 14px;
    }

    .feature span {
        color: #333;
        font-size: 14px;
        font-weight: 600;
    }

    .term-tag {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }

    .term-tag span {
        display: inline-block;
        background: rgba(30, 60, 114, 0.1);
        color: #1e3c72;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Additional Info */
    .additional-info {
        margin-bottom: 40px;
    }

    .info-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        padding: 25px;
        border: 2px solid #1e3c72;
    }

    .info-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .info-header i {
        font-size: 24px;
        color: #1e3c72;
    }

    .info-header h4 {
        color: #000;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .info-content p {
        color: #333;
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

    /* CTA Buttons */
    .terms-cta {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .btn-agree,
    .btn-terms {
        padding: 15px 35px;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-agree {
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        color: #fff;
        box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
    }

    .btn-agree:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(30, 60, 114, 0.4);
        color: #fff;
    }

    .btn-terms {
        background: transparent;
        color: #1e3c72;
        border: 2px solid #1e3c72;
    }

    .btn-terms:hover {
        background: rgba(30, 60, 114, 0.1);
        transform: translateY(-3px);
        color: #1e3c72;
    }

    /* Acceptance Confirmation */
    .acceptance-confirmation {
        text-align: center;
    }

    .confirmation-box {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .confirmation-box i {
        font-size: 24px;
        color: #1e3c72;
    }

    .confirmation-text p {
        color: #333;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .section-title {
            font-size: 36px;
        }
        
        .term-item {
            padding: 25px 20px;
        }
        
        .term-title {
            font-size: 20px;
        }
        
        .terms-cta {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-agree,
        .btn-terms {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 992px) {
        .image-container {
            min-height: 500px;
        }
        
        .terms-content {
            padding: 40px 30px;
            min-height: auto;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .term-item {
            flex-direction: column;
            text-align: center;
        }
        
        .term-icon {
            margin: 0 auto 20px;
        }
        
        .term-features {
            flex-direction: column;
            align-items: center;
        }
        
        .confirmation-box {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 28px;
        }
        
        .overlay-content h3 {
            font-size: 24px;
        }
        
        .overlay-content i {
            font-size: 48px;
        }
        
        .term-item {
            padding: 20px;
        }
        
        .term-number {
            font-size: 48px;
        }
        
        .term-tag {
            position: relative;
            bottom: auto;
            right: auto;
            margin-top: 15px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 24px;
        }
        
        .section-badge {
            font-size: 12px;
            padding: 6px 15px;
        }
        
        .title-divider {
            gap: 10px;
        }
        
        .divider-line {
            width: 50px;
        }
        
        .term-icon {
            width: 50px;
            height: 50px;
        }
        
        .term-icon i {
            font-size: 20px;
        }
        
        .btn-agree,
        .btn-terms {
            padding: 12px 25px;
            font-size: 14px;
        }
        
        .overlay-content {
            padding: 20px;
        }
    }

    