/* Main Variables */
:root {
    --primary-color: #D4AF37;
    /* Gold */
    --secondary-color: #1a1a1a;
    /* Dark Grey */
    --accent-color: #ffc107;
    /* Bright Yellow/Gold */
    --dark-bg: #0a0a0a;
    /* Deep Black */
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(to right, #D4AF37, #FFD700, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.letter-spacing-2 {
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.8) !important;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0 15px !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.header-title {
    font-size: 3.5rem;
    line-height: 1.1;
}

@media (min-width: 992px) {
    .header-title {
        font-size: 5rem;
    }
}

/* Buttons */
.btn-warning {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border: none;
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    color: #000;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    to {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 10px #fff;
    }
}

/* Cards & Glassmorphism */
.bg-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.glass-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium Partner Card */
.partner-card-premium {
    background: #000;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.partner-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.partner-logo-area {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.partner-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

.partner-features li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.partner-features li i {
    color: var(--primary-color);
}

.payment-icons i,
.payment-icons img {
    font-size: 1.8rem;
    margin: 0 6px;
    opacity: 0.8;
}

.bonus-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 15px 0;
    text-transform: uppercase;
}

.demo-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
}

.demo-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.demo-credentials {
    font-family: monospace;
    font-size: 0.9rem;
    color: #fff;
    margin: 2px 0;
}

/* Feature Box */
.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* Steps */
.step-card {
    background: transparent;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Full Width Banner */
.full-width-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    /* Banner BG */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

@media (max-width: 768px) {
    .full-width-banner {
        height: 40vh;
        background-attachment: scroll;
    }
}

/* FAQ Accordion */
.accordion-item {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background-color: transparent !important;
    color: white !important;
    font-weight: 600;
    box-shadow: none !important;
    padding: 1.5rem 0;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
}

.accordion-button::after {
    filter: invert(1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: rgba(255, 255, 255, 0.6);
    padding-left: 0;
}

/* Footer */
footer a.hover-white:hover {
    color: #fff !important;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color) !important;
    color: #000 !important;
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border: none;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b85a;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: float 10s infinite alternate;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -50px;
    right: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: #FF5722;
    /* Add a bit of orange/heat */
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}