/* coming-soon.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050816;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

span {
    background: linear-gradient(90deg, #7b61ff, #44e6c2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.cs-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 7%;
}

.cs-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
}

.cs-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.cs-back {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d3d8e7;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    border: 1px solid rgba(87, 125, 255, .3);
    border-radius: 12px;
    transition: all .3s ease;
}

.cs-back:hover {
    border-color: rgba(120, 160, 255, .65);
    background: rgba(87, 125, 255, .08);
}

/* ══════════════════════════════════════════
   WRAP / CARD
══════════════════════════════════════════ */
.cs-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 7% 100px;
    min-height: calc(100vh - 90px);
}

.cs-card {
    max-width: 620px;
    width: 100%;
    text-align: center;
    background: #0b1022;
    border: 1px solid rgba(87, 125, 255, .28);
    border-radius: 28px;
    padding: 60px 44px;
}

.cs-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(77, 124, 255, .18), rgba(154, 92, 255, .18));
    border: 1px solid rgba(120, 160, 255, .35);
}

.cs-icon i {
    font-size: 34px;
    color: #8f7cff;
}

.cs-badge {
    display: inline-block;
    color: #44e6ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    -webkit-text-fill-color: #44e6ff;
    background: none;
}

.cs-card h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.cs-card h1 #csBotName {
    background: linear-gradient(90deg, #7b61ff, #44e6c2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs-card p {
    color: #9aa0b7;
    line-height: 1.7;
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 34px;
}

.cs-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.btn-primary,
.btn-outline {
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #4d7cff, #9a5cff);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(154, 92, 255, .18);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(154, 92, 255, .28);
}

.btn-outline {
    background: transparent;
    color: #d3d8e7;
    border: 1px solid rgba(87, 125, 255, .35);
}

.btn-outline:hover {
    border-color: rgba(120, 160, 255, .65);
    background: rgba(87, 125, 255, .08);
}

.cs-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(87, 125, 255, .18);
}

.cs-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9aa0b7;
    font-size: 14px;
    transition: color .3s ease;
}

.cs-contact a:hover {
    color: #44e6c2;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 600px) {
    .cs-navbar {
        padding: 20px 5%;
    }

    .cs-back span {
        display: none;
    }

    .cs-card {
        padding: 44px 24px;
    }

    .cs-card h1 {
        font-size: 26px;
    }
}
