:root {
    --primary-color: #0ff;
    --secondary-color: #ff00ff;
    --accent-color: #7700ff;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --card-bg: rgba(20, 20, 40, 0.7);
    --text-color: #e0e0ff;
    --border-glow: 0 0 10px var(--primary-color);
    --neon-box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(119, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 40%);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--darker-bg) 25%, transparent 25%),
                linear-gradient(-45deg, var(--darker-bg) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--darker-bg) 75%),
                linear-gradient(-45deg, transparent 75%, var(--darker-bg) 75%);
    background-size: 100px 100px;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
    opacity: 0.03;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.header {
    background: linear-gradient(135deg, rgba(0, 20, 50, 0.8) 0%, rgba(20, 0, 50, 0.8) 100%);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(0, 255, 255, 0.1) 50%, transparent 55%);
    animation: headerGlow 5s linear infinite;
    z-index: 0;
}

@keyframes headerGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.header .container {
    position: relative;
    z-index: 1;
}

.display-4 {
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: var(--neon-box-shadow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
}

.card-body {
    padding: 2rem;
}

.form-control {
    background-color: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: white;
    border-radius: 8px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.form-control:focus {
    background-color: rgba(25, 25, 45, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
    color: white;
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.form-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.2) 50%, transparent 55%);
    transform: rotate(45deg);
    animation: btnGlow 2s linear infinite;
    z-index: 0;
}

@keyframes btnGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

.results {
    display: none;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 20, 40, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success {
    background-color: rgba(0, 50, 30, 0.7);
    border-color: rgba(0, 255, 128, 0.5);
    color: #e0ffe0;
}

.alert-danger {
    background-color: rgba(50, 0, 30, 0.7);
    border-color: rgba(255, 0, 128, 0.5);
    color: #ffe0e0;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.benefits-section {
    padding: 4rem 0;
    position: relative;
}

.benefit-card {
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(25, 25, 45, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 15px;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    border-color: var(--primary-color);
}

.faq-section {
    padding: 4rem 0;
    position: relative;
}

.accordion-item {
    background-color: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: rgba(30, 30, 60, 0.8);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    padding: 1.5rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 40, 80, 0.8);
    color: var(--primary-color);
    box-shadow: inset 0 -1px 0 rgba(0, 255, 255, 0.2);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230ff'%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 {
    padding: 1.5rem;
    color: rgba(224, 224, 255, 0.9);
    background-color: rgba(15, 15, 30, 0.6);
}

.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.8) 0%, rgba(20, 0, 40, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(119, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.testimonials-section .card {
    background: rgba(30, 30, 60, 0.9);
    border: 1px solid rgba(119, 0, 255, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(119, 0, 255, 0.3);
}

.testimonials-section .card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(119, 0, 255, 0.5);
}

.text-warning {
    color: #ffcc00 !important;
}

.blockquote-footer {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.fomo-floater {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 280px;
}

.live-counter {
    background: rgba(20, 20, 40, 0.9);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    50% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 10px 5px rgba(0, 255, 255, 0.3); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
}

.toast-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background: rgba(20, 20, 40, 0.9);
    border-left: 3px solid var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    animation: slideIn 0.3s ease-out, glowPulse 2s infinite alternate;
    backdrop-filter: blur(10px);
}

.toast-header {
    background: rgba(30, 30, 60, 0.9);
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.7); }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 30, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .fomo-floater {
        width: 240px;
    }
}