/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Matrix Rain Background */
#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 255, 41, 0.05) 0%, transparent 70%);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00ff29;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
    0% { text-shadow: 0 0 5px rgba(0, 255, 41, 0.5); }
    100% { text-shadow: 0 0 15px rgba(0, 255, 41, 0.8); }
}

.scroll-arrow {
    position: relative;
    width: 2px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #00ff29, transparent);
    animation: line-flow 2s ease-in-out infinite;
}

.arrow-point {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #00ff29;
    margin-top: -2px;
    animation: point-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(0, 255, 41, 0.6));
}

@keyframes line-flow {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes point-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.scroll-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 255, 41, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Typography */
.main-headline {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00ff29, #8a2be2, #00ff29);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #00ff29;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #8a2be2;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-2px, 1px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(2px, -1px); }
}

.subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Bot Cards Section */
.bots-section {
    padding: 6rem 0;
    position: relative;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bot-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(40, 40, 40, 0.4));
    border: 1px solid rgba(0, 255, 41, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    transform: none;
}

.bot-card:hover {
    border-color: rgba(0, 255, 41, 0.4);
}



.bot-icon {
    font-size: 3rem;
    color: #00ff29;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 41, 0.5));
}

.bot-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bot-description {
    opacity: 1;
    transform: none;
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Offer Section */
.offer-section {
    padding: 4rem 0 8rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(138, 43, 226, 0.05) 50%, transparent 100%);
}

.offer-content {
    max-width: 600px;
    margin: 0 auto;
}

.offer-headline {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #8a2be2, #00ff29);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-container {
    margin: 3rem 0;
}

.currency-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency-btn {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(0, 255, 41, 0.3);
    background: rgba(0, 255, 41, 0.05);
    color: #00ff29;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.currency-btn:hover {
    background: rgba(0, 255, 41, 0.1);
    border-color: rgba(0, 255, 41, 0.5);
}

.currency-btn.active {
    background: #00ff29;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 255, 41, 0.5);
}

.price-display {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #00ff29;
    text-shadow: 0 0 20px rgba(0, 255, 41, 0.5);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 0.6em;
}

.period {
    font-size: 0.4em;
    color: #cccccc;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #8a2be2, #00ff29);
    border: none;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    animation: shake 0.5s ease-in-out;
    box-shadow: 0 0 30px rgba(0, 255, 41, 0.6);
}

@keyframes shake {
    0%, 100% { transform: scale(1.05) translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: scale(1.05) translateX(-2px); }
    20%, 40%, 60%, 80% { transform: scale(1.05) translateX(2px); }
}

.btn-glow {
    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 .btn-glow {
    left: 100%;
}

/* Urgency Section */
.urgency-section {
    margin-top: 3rem;
}

.urgency-text {
    font-size: 1.1rem;
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-weight: 500;
}

.countdown-container {
    max-width: 400px;
    margin: 0 auto;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', monospace;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 255, 41, 0.1);
    border: 1px solid rgba(0, 255, 41, 0.3);
    border-radius: 10px;
    padding: 1rem;
    min-width: 80px;
}

.time-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff29;
    text-shadow: 0 0 10px rgba(0, 255, 41, 0.5);
}

.time-label {
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    color: #8a2be2;
    font-weight: 700;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .bots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bot-card {
        padding: 2rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.8rem;
        min-width: 60px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .bots-section,
    .offer-section {
        padding: 4rem 0;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
        scale: 0.8;
    }
    
    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(15, 15, 15, 0.95) 50%, rgba(10, 10, 10, 0.9) 100%);
    overflow: hidden;
}

.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 41, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 41, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-shift 20s linear infinite;
    z-index: 1;
}

@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.how-it-works-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.how-it-works-headline {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #8a2be2, #00ff29, #8a2be2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6), rgba(30, 30, 30, 0.3));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.05), rgba(0, 255, 41, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.step-card:hover .step-icon {
    animation: icon-pulse 1.5s ease-in-out infinite;
    color: #8a2be2;
}

.step-card:hover .step-description {
    transform: translateY(-5px);
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-icon {
    font-size: 3.5rem;
    color: #00ff29;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 41, 0.3));
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(138, 43, 226, 0.6);
    background: rgba(138, 43, 226, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.step-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: transform 0.4s ease;
}

.bottom-message {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 41, 0.05);
    border: 1px solid rgba(0, 255, 41, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.glow-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff29;
    text-shadow: 0 0 15px rgba(0, 255, 41, 0.5);
    animation: text-glow 3s ease-in-out infinite alternate;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 0;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .holographic-grid {
        background-size: 40px 40px;
    }
    
    @keyframes grid-shift {
        0% { transform: translate(0, 0); }
        100% { transform: translate(40px, 40px); }
    }
}

/* Footer Section */
.footer {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 255, 41, 0.1);
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8a2be2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-trigger {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-trigger:hover {
    color: #000000;
    background: #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    transform: scale(1.05);
}

.contact-trigger:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: contact-shine 0.5s ease;
}

@keyframes contact-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.footer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
