/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --accent: #D1FF16;
    --accent-glow: rgba(209, 255, 22, 0.4);
    --accent-dark: #a8cc12;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --success: #00ff88;
    --gradient-accent: linear-gradient(135deg, #D1FF16 0%, #a8cc12 100%);
    --glow-cyan: rgba(0, 255, 255, 0.3);
    --glow-green: rgba(209, 255, 22, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== Typography ===== */
h1,
h2,
h3 {
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accent {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* ===== Layout ===== */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ===== Floating Background Elements ===== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-ball {
    position: absolute;
    font-size: 40px;
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.ball-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.ball-2 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
    font-size: 50px;
}

.ball-3 {
    top: 50%;
    left: 8%;
    animation-delay: 4s;
}

.ball-4 {
    top: 70%;
    right: 5%;
    animation-delay: 6s;
    font-size: 35px;
}

.ball-5 {
    top: 85%;
    left: 15%;
    animation-delay: 8s;
    font-size: 45px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(10deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(30px) rotate(-10deg);
    }
}

/* ===== Falling Money Effect ===== */
.money-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.money {
    position: absolute;
    font-size: 30px;
    animation: fall linear infinite;
    opacity: 0.6;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Header ===== */
.header {
    padding: 30px 0;
    text-align: center;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-height: 100px;
    width: auto;
}

.logo-text {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 20px 0 60px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Phone Mockup */
.phone-mockup {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 30px;
    padding: 15px;
    margin: 0 auto 40px;
    max-width: 300px;
    box-shadow:
        0 0 40px rgba(209, 255, 22, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(209, 255, 22, 0.3);
}

.phone-screen {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 20px;
    min-height: 200px;
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid var(--success);
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

.chat-message:nth-child(1) {
    animation-delay: 0.2s;
}

.chat-message:nth-child(2) {
    animation-delay: 0.4s;
}

.chat-message:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bet-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.result {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--success);
}

/* ===== CTA Button ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-accent);
    color: #000;
    font-family: 'Russo One', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 30px var(--accent-glow),
        0 10px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 50px var(--glow-green),
        0 15px 50px rgba(0, 0, 0, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-icon {
    font-size: 1.2rem;
}

.cta-large {
    font-size: 1rem;
    padding: 20px 35px;
}

.cta-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 0 30px var(--accent-glow),
            0 10px 40px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow:
            0 0 50px var(--glow-green),
            0 0 80px var(--accent-glow),
            0 10px 40px rgba(0, 0, 0, 0.3);
    }
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(209, 255, 22, 0.1);
    border-color: var(--accent);
}

.stat-number {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* ===== Proof Section ===== */
.proof-section {
    padding: 60px 0;
}

/* Slider Container */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-slider {
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card:hover {
    box-shadow: 0 0 30px var(--accent-glow);
    border-color: var(--accent);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar.has-image {
    background: none;
    border: 2px solid var(--accent);
}

.avatar.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 700;
    font-size: 1rem;
}

.profit {
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* Slider Arrows */
.slider-arrow {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(209, 255, 22, 0.5);
}

/* ===== Live Stats Display ===== */
.live-stats-display {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-icon {
    font-size: 0.8rem;
}

.live-icon.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.live-label {
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
    color: #ff4444;
    letter-spacing: 2px;
}

.vip-badge {
    margin-left: auto;
    background: linear-gradient(135deg, #D1FF16 0%, #a8cc12 100%);
    color: #000;
    font-family: 'Russo One', sans-serif;
    font-size: 0.55rem;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.stat-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-value {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
}

.stat-value.accent {
    color: var(--accent);
}

.stat-value.success {
    color: var(--success);
}

/* ===== CTA Center ===== */
.cta-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ===== Calculator Section ===== */
.calculator-section {
    padding: 60px 0;
    position: relative;
}

.calculator-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(209, 255, 22, 0.2);
    box-shadow: 0 0 40px rgba(209, 255, 22, 0.1);
}

.calculator-input-group {
    margin-bottom: 25px;
}

.calculator-input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.currency {
    padding: 15px;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-family: 'Russo One', sans-serif;
    padding: 15px;
    outline: none;
}

.input-wrapper input:focus {
    outline: none;
}

.calculator-result {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--accent);
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.result-value {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.calculator-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 15px;
    opacity: 0.7;
}

/* ===== Features Section ===== */
.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(209, 255, 22, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.money-stack {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.final-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer .logo-text {
    font-size: 1.5rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Social Media Section */
.social-media {
    margin: 20px 0;
}

.social-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Contact Emails */
.contact-section {
    margin: 20px 0;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--accent);
}

.contact-email svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.email-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.disclaimer-link:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ===== Responsive Design ===== */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .phone-mockup {
        max-width: 350px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .features-grid {
        gap: 25px;
    }

    .feature-card {
        padding: 30px 25px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 700px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .stats-grid {
        gap: 25px;
    }

    .stat-item {
        padding: 35px 20px;
    }

    .testimonials-carousel {
        gap: 25px;
    }

    .result-value {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 800px;
    }

    .floating-ball {
        font-size: 60px;
    }

    .ball-2 {
        font-size: 70px;
    }
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* ===== Selection Styling ===== */
::selection {
    background: var(--accent);
    color: #000;
}