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

:root {
    --primary-orange: #f97316;
    --primary-pink: #d946ef;
    --primary-purple: #7c3aed;
    --bg-dark: #0d0118;
    --bg-section: #120222;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-white: #f5f0ff;
    --text-muted: #c4b5d8;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-hero: linear-gradient(180deg, #e8501a 0%, #c2185b 35%, #6d1a9c 65%, #0d0118 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    background-color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(13, 1, 24, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Floating element animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@keyframes float-alt {
    0%, 100% { transform: translateY(-10px) rotate(4deg); }
    50% { transform: translateY(10px) rotate(-4deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(4deg); }
    66% { transform: translateY(6px) rotate(-3deg); }
}

/* Aura blobs */
.aura {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.aura-orange {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.38) 0%, transparent 70%);
    filter: blur(70px);
    bottom: 5%;
    left: 10%;
}

.aura-pink {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.32) 0%, transparent 70%);
    filter: blur(60px);
    top: 8%;
    right: 15%;
}

.aura-teal {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, transparent 70%);
    filter: blur(55px);
    top: 5%;
    right: 35%;
}

/* Floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.orb-large {
    width: 88px;
    height: 88px;
    background: radial-gradient(circle at 35% 30%,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(210, 170, 255, 0.68) 25%,
        rgba(150, 80, 220, 0.45) 55%,
        rgba(60, 10, 140, 0.15) 100%
    );
    box-shadow:
        inset -10px -10px 20px rgba(0, 0, 0, 0.35),
        inset 4px 4px 10px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(180, 100, 255, 0.2);
    animation: float 7s ease-in-out infinite;
}

.orb-medium {
    width: 58px;
    height: 58px;
    background: radial-gradient(circle at 35% 30%,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(160, 130, 210, 0.6) 30%,
        rgba(90, 45, 170, 0.35) 65%,
        rgba(20, 5, 70, 0.1) 100%
    );
    box-shadow:
        inset -7px -7px 14px rgba(0, 0, 0, 0.4),
        inset 3px 3px 8px rgba(255, 255, 255, 0.12),
        0 0 20px rgba(120, 70, 200, 0.18);
    animation: float-alt 9s ease-in-out infinite;
}

.orb-small {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 35% 30%,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(200, 150, 255, 0.55) 35%,
        rgba(120, 60, 200, 0.3) 65%,
        rgba(40, 5, 100, 0.1) 100%
    );
    box-shadow:
        inset -5px -5px 10px rgba(0, 0, 0, 0.4),
        0 0 14px rgba(150, 80, 220, 0.2);
    animation: float 6s ease-in-out infinite 1s;
}

.orb-left  { left: 6%;  top: 18%; }
.orb-right { right: 7%; top: 28%; }
.orb-cta-left { left: 8%; top: 25%; }

/* Crystal shapes */
.crystal {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.crystal-1 {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(200, 175, 255, 0.45) 40%,
        rgba(140, 90, 220, 0.2) 100%
    );
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    filter: drop-shadow(0 0 8px rgba(200, 150, 255, 0.45));
    left: 13%;
    bottom: 22%;
    animation: float-slow 11s ease-in-out infinite;
}

.crystal-2 {
    width: 22px;
    height: 44px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(180, 220, 255, 0.4) 45%,
        rgba(100, 155, 230, 0.2) 100%
    );
    clip-path: polygon(50% 0%, 90% 25%, 75% 100%, 25% 100%, 10% 25%);
    filter: drop-shadow(0 0 7px rgba(150, 200, 255, 0.35));
    right: 11%;
    bottom: 18%;
    animation: float 8s ease-in-out infinite 2s;
}

.crystal-3 {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 180, 150, 0.4) 50%,
        rgba(220, 80, 60, 0.15) 100%
    );
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.35));
    right: 10%;
    top: 20%;
    animation: float-alt 10s ease-in-out infinite 3s;
}

/* Decorative scan-line clusters */
.deco-lines {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deco-lines::before,
.deco-lines::after {
    content: '';
    display: block;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    height: 2px;
}

.deco-lines-left {
    left: 5%;
    top: 45%;
}
.deco-lines-left::before { width: 26px; }
.deco-lines-left::after  { width: 16px; }

.deco-lines-right {
    right: 5%;
    bottom: 32%;
}
.deco-lines-right::before { width: 18px; }
.deco-lines-right::after  { width: 28px; }

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(10, 2, 20, 0.45), rgba(10, 2, 20, 0.6)), url('Ove59Ra0S0iPwU3B9y2tDg@2k.webp');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    color: white;
    min-height: 70vh;
    padding: 10rem 0 8rem;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    color: var(--text-white);
}

.cta-button {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.feature p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-section);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a052e 50%, var(--bg-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Shop Page */
.shop-hero {
    background-image: linear-gradient(rgba(10, 2, 20, 0.5), rgba(10, 2, 20, 0.65)), url('Ove59Ra0S0iPwU3B9y2tDg@2k.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.shop-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.shop-hero p {
    font-size: 1.25rem;
    opacity: 0.85;
    color: var(--text-white);
}

.product-section {
    padding: 4rem 0;
    background-color: var(--bg-dark);
}

.product-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.product-image {
    position: relative;
    background: linear-gradient(135deg, #1a052e 0%, #0d0118 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.patch-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.product-placeholder {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patch-icon {
    font-size: 8rem;
    opacity: 0.3;
}

.sold-out-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #ef4444;
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.product-details {
    margin-bottom: 2rem;
}

.detail-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.detail-item strong {
    color: var(--text-white);
}

.detail-item:last-child {
    border-bottom: none;
}

.price-section {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: not-allowed;
    margin-bottom: 1rem;
}

.stock-notice {
    color: #ef4444;
    font-size: 0.875rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Notify Me Section */
.notify-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.notify-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.notify-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-white);
    transition: border-color 0.3s ease;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.notify-btn {
    padding: 0.875rem 2rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-message {
    font-size: 0.875rem;
    text-align: center;
    min-height: 1.5rem;
    transition: color 0.3s ease;
    color: var(--text-muted);
}

.notify-message.success {
    color: #34d399;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #080010;
    color: var(--text-muted);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .orb, .crystal, .deco-lines { display: none; }
    .aura { opacity: 0.6; }
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image {
        min-height: 300px;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-btn {
        width: 100%;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.5px;
    }

    .about-content h2,
    .how-it-works h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .shop-hero h1 {
        font-size: 2rem;
    }
}
