/* ByteLyfe Web Styles */



/* CSS Variables */
:root {
    --bg-dark: #0a0a0f;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

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

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animated Background Gradient */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(120, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 200, 255, 0.05) 0%, transparent 60%);
    animation: backgroundPulse 40s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Main Container */
.coming-soon-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Rainbow Pill Border Container */
.rainbow-pill {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    border-radius: 60px;
    background: #0a0a0f;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 60px rgba(120, 0, 255, 0.2),
        0 0 100px rgba(255, 0, 150, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Border wrapper - clips the rotating gradient */
.rainbow-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 63px;
    overflow: hidden;
    z-index: -2;
}

/* Rotating rainbow gradient - extremely oversized to hide seam */
.rainbow-border::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000%;
    height: 1000%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
            #ff0080, #ff4d00, #ff8c00, #ffbb00, #ffd700,
            #aaff00, #00ff88, #00ffcc, #00cfff, #0088ff,
            #4444ff, #7b68ee, #aa44ff, #dd00ff, #ff0080);
    animation: rainbowSpin 7.5s linear infinite;
}

/* Inner fill to create the border effect */
.rainbow-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px;
    background: #0a0a0f;
    z-index: -1;
}

@keyframes rainbowSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Glow animation for the border */
.rainbow-pill-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 63px;
    overflow: hidden;
    z-index: -3;
    filter: blur(25px);
    opacity: 0.2;
}

.rainbow-pill-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000%;
    height: 1000%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
            #ff0080, #ff4d00, #ff8c00, #ffbb00, #ffd700,
            #aaff00, #00ff88, #00ffcc, #00cfff, #0088ff,
            #4444ff, #7b68ee, #aa44ff, #dd00ff, #ff0080);
    animation: rainbowSpin 7.5s linear infinite;
}

@keyframes glowPulse {
    0% {
        filter: blur(20px);
        opacity: 0.2;
    }

    100% {
        filter: blur(35px);
        opacity: 0.2;
    }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Main Title - ByteLyfe. */
.main-title {
    font-family: 'Lexend Deca', sans-serif;
    font-optical-sizing: auto;
    font-size: 7rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    margin: 0;
    text-shadow:
        0 0 40px rgba(255, 255, 255, 0.3),
        0 0 80px rgba(120, 0, 255, 0.2);
    animation: titleFloat 20s ease-in-out infinite;
}

@keyframes titleFloat {

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

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

/* Subtitle - Coming Soon */
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Hopefully Text */
.hopefully {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: .9rem;
    font-weight: 400;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 75s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: -8s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: -18s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: -14s;
    animation-duration: 35s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: -22s;
    animation-duration: 28s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: -3s;
    animation-duration: 32s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: -12s;
    animation-duration: 26s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: -20s;
    animation-duration: 20s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: -7s;
    animation-duration: 34s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: -16s;
    animation-duration: 27s;
}

.particle:nth-child(11) {
    left: 25%;
    animation-delay: -10s;
    animation-duration: 31s;
}

.particle:nth-child(12) {
    left: 35%;
    animation-delay: -24s;
    animation-duration: 23s;
}

.particle:nth-child(13) {
    left: 45%;
    animation-delay: -2s;
    animation-duration: 29s;
}

.particle:nth-child(14) {
    left: 55%;
    animation-delay: -15s;
    animation-duration: 33s;
}

.particle:nth-child(15) {
    left: 65%;
    animation-delay: -9s;
    animation-duration: 24s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .rainbow-pill {
        padding: 20px 25px;
        border-radius: 60px;
    }

    .rainbow-pill::before {
        border-radius: 63px;
    }

    .rainbow-pill::after {
        border-radius: 57px;
    }

    .rainbow-pill-glow {
        border-radius: 63px;
    }

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

    .subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hopefully {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .rainbow-pill {
        padding: 15px 20px;
        border-radius: 50px;
    }

    .rainbow-pill::before {
        border-radius: 53px;
    }

    .rainbow-pill::after {
        border-radius: 47px;
    }

    .rainbow-pill-glow {
        border-radius: 53px;
    }

    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .hopefully {
        font-size: 0.8rem;
    }
}

/* ===== FAQ Page Styles ===== */

/* FAQ Container */
.faq-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 60px 40px;
    margin: 0 auto;
}

/* Back Link */
.back-link {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.back-link:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

/* FAQ Title */
.faq-title {
    font-family: 'Riffic Bold', 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-shadow:
        0 0 40px rgba(255, 255, 255, 0.3),
        0 0 80px rgba(120, 0, 255, 0.2);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item (details element) */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(120, 0, 255, 0.1);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(120, 0, 255, 0.3);
    box-shadow: 0 0 40px rgba(120, 0, 255, 0.15);
}

/* FAQ Question (summary element) */
.faq-question {
    padding: 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    color: #aa44ff;
}

.faq-question:hover {
    color: #ffffff;
}

/* FAQ Answer */
.faq-answer {
    padding: 0 24px 20px 24px;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.faq-answer a {
    color: #aa44ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #dd00ff;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 40px 24px;
    }

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

    .faq-question {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .faq-answer {
        padding: 0 20px 16px 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 30px 16px;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    .faq-answer {
        padding: 0 16px 14px 16px;
    }
}