@import url('/elements/header.css');
@import url('/elements/footer.css');

:root {
    --primary-color: #1ed760;
    --primary-glow: #1ed760;
    --bg-dark: #0f1014;
    --text-primary: #ffffff;
    --text-secondary: #a0a0ba;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

header {
    background-color: #121212;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(30, 215, 96, 0.4);
}

.back-button {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.back-button:hover {
    color: var(--primary-color);
}

.coming-soon-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

/* Background Animation */
.glow-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.15) 0%, rgba(15, 16, 20, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite ease-in-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

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

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

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.icon-wrapper {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(30, 215, 96, 0.6));
}

@keyframes float {

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

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

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: 5px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 20px 0 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(30, 215, 96, 0.4);
}

.features-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 50%;
    transition: 0.3s;
}

.feature-item:hover i {
    color: var(--primary-color);
    background: rgba(30, 215, 96, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(30, 215, 96, 0.3);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .features-preview {
        flex-direction: column;
        gap: 20px;
    }
}