:root {
    --nebulapurple: #7B2CBF;
    --cyberteal: #00F5D4;
    --voidblack: #0A0A0F;
    --quantumsilver: #E0E0E0;
    --laserred: #FF0055;
    --hologramblue: #00BBFF;
    --gridcolor: rgba(123, 44, 191, 0.1);
}

.quantum-landing-body,
.quantum-landing-body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.quantum-landing-body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--voidblack);
    color: var(--quantumsilver);
    overflow-x: hidden;
    line-height: 1.6;
}

.quantum-landing-body h1,
.quantum-landing-body h2,
.quantum-landing-body h3,
.quantum-landing-body h4,
.quantum-landing-body h5 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background Grid */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--gridcolor) 1px, transparent 1px),
        linear-gradient(90deg, var(--gridcolor) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    opacity: 0.3;
}

/* Particle Animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--cyberteal);
    border-radius: 50%;
    opacity: 0.6;
}

/* Header */
.ql-header {
    position: relative;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.ql-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ql-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nebulapurple), var(--hologramblue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    transform: rotate(45deg);
}

.ql-logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--cyberteal), var(--hologramblue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.ql-logo-text span {
    color: var(--laserred);
}

.ql-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ql-nav a {
    color: var(--quantumsilver);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s;
}

.ql-nav a:hover {
    color: var(--cyberteal);
}

.ql-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyberteal);
    transition: width 0.3s;
}

.ql-nav a:hover::after {
    width: 100%;
}

.ql-cta-button {
    background: linear-gradient(90deg, var(--laserred), var(--nebulapurple));
    color: white;
    border: none;
    padding: 12px 28px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ql-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3);
}

.ql-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--nebulapurple), var(--hologramblue));
    transition: left 0.5s;
    z-index: -1;
}

.ql-cta-button:hover::before {
    left: 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 5% 6rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, rgba(10, 10, 15, 0) 70%);
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero h1 .gradient-text {
    background: linear-gradient(to right, var(--cyberteal), var(--hologramblue), var(--laserred));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--cyberteal);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.countdown-item {
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid var(--cyberteal);
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.countdown-value {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--cyberteal);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modules Section */
.modules-section {
    padding: 6rem 5%;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--nebulapurple), var(--cyberteal));
    margin: 15px auto;
    border-radius: 2px;
}

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.module-card {
    background: rgba(30, 30, 40, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(123, 44, 191, 0.3);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyberteal);
    box-shadow: 0 15px 30px rgba(0, 245, 212, 0.2);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.1), transparent);
    transition: left 0.7s;
}

.module-card:hover::before {
    left: 100%;
}

.module-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--cyberteal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-number::before {
    content: '>';
    color: var(--laserred);
}

.module-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.module-content {
    margin-bottom: 1.5rem;
}

.module-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.module-item i {
    color: var(--cyberteal);
    margin-right: 10px;
    margin-top: 5px;
}

/* Workshop Details */
.workshop-details {
    padding: 6rem 5%;
    background: rgba(10, 10, 20, 0.8);
    position: relative;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.detail-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(30, 30, 40, 0.5);
    border: 1px solid rgba(123, 44, 191, 0.3);
    transition: all 0.3s;
}

.detail-card:hover {
    border-color: var(--cyberteal);
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--cyberteal);
}

.detail-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

/* Registration Section */
.registration-section {
    padding: 6rem 5%;
    text-align: center;
    position: relative;
}

.registration-form {
    max-width: 600px;
    margin: 3rem auto;
    background: rgba(30, 30, 40, 0.7);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(123, 44, 191, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cyberteal);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(123, 44, 191, 0.5);
    border-radius: 4px;
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--cyberteal);
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

/* Footer */
.ql-footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(123, 44, 191, 0.3);
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a {
    color: var(--quantumsilver);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cyberteal);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(123, 44, 191, 0.2);
    border-radius: 50%;
    color: var(--cyberteal);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--cyberteal);
    color: var(--voidblack);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(1000%);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to bottom, transparent, var(--cyberteal), transparent);
    animation: scanline 8s linear infinite;
    opacity: 0.5;
    z-index: 100;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .modules-container {
        grid-template-columns: 1fr;
    }

    .ql-nav ul {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .registration-form {
        padding: 2rem;
    }
}

/* Trading Chart Animation */
.chart-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: -1;
    opacity: 0.15;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    pointer-events: none;
}

.candle {
    width: 10px;
    background: var(--cyberteal);
    animation: grow 3s infinite alternate;
    position: relative;
    border-radius: 2px;
}

.candle.red {
    background: var(--laserred);
    animation-delay: 0.5s;
}

.candle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 4px;
    width: 2px;
    height: calc(100% + 30px);
    background: inherit;
    opacity: 0.5;
}

@keyframes grow {
    0% {
        height: 20%;
        opacity: 0.3;
    }

    100% {
        height: 80%;
        opacity: 0.8;
    }
}

/* Floating Profit Bubbles */
.profit-bubble {
    position: absolute;
    color: var(--cyberteal);
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    animation: floatUp 8s linear infinite;
    opacity: 0;
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
    z-index: -1;
}

@keyframes floatUp {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-500px) scale(1.2);
        opacity: 0;
    }
}

/* Sci-Fi Elements */
.hologram {
    position: relative;
    overflow: hidden;
}

.hologram::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 245, 212, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s;
}

.hologram:hover::after {
    transform: translateX(100%);
}