/* Base Theme & Reset */
:root {
    --bg-dark: #07080b;
    /* Very dark background */
    --text-main: #f2f2f7;
    --text-muted: #8a8d9b;
    --accent-orange: #FF8C00;
    --accent-red: #FF4500;
    --glow-color: rgba(255, 69, 0, 0.4);
    /* Fiery orange/red glow */
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow: hidden;
    /* Prevent scrolling on a pure coming soon page */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

::selection {
    background: var(--accent-orange);
    color: #fff;
}

/* Container Layout */
.coming-soon-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

/* The Fiery Glow Background behind Logo */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
    opacity: 0.6;
    animation: breathGlow 4s ease-in-out infinite alternate;
}

@keyframes breathGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.content-wrapper {
    animation: fadeIn 1.5s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

/* Logo */
.logo-wrapper {
    margin-bottom: 2rem;
}

.main-logo {
    width: 320px;
    height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Typography */
.brand-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
}

.brand-title .highlight {
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.status-message {
    font-size: 1.1rem;
    color: #b0b3c6;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Badge */
.badge-container {
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 50px;
    background: rgba(255, 140, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge.pulse {
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .main-logo {
        width: 140px;
        height: 140px;
    }

    .status-message {
        font-size: 1rem;
    }

    .policy-container {
        padding: 1.5rem !important;
    }
}

/* Policy Page specific overrides and styles */
body.policy-page {
    display: block;
    overflow: auto;
    padding: 3rem 1.5rem;
}

.policy-glow {
    position: fixed;
    top: -20%;
    left: 10%;
    z-index: -1;
    width: 80vw;
    height: 80vw;
    animation: none;
    opacity: 0.2;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    align-items: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-orange);
}

.policy-container .brand-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.policy-content {
    font-size: 1.05rem;
    color: #d1d4dc;
}

.policy-content h2 {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-content strong {
    color: #fff;
}

.policy-content a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.policy-content .contact-info {
    background: rgba(255, 140, 0, 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-orange);
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}

.policy-content .contact-info p:last-child {
    margin-bottom: 0;
}