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

body {
    background: #050505;
    color: white;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.coming-soon-page {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .85)),
        url("images/ChatGPT\ Image\ May\ 12\,\ 2026\ at\ 04_06_49\ AM\ \(1\).png") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
}

.breadcrumb {
    position: absolute;
    top: 24px;
    left: 34px;
    display: flex;
    gap: 9px;
    font-size: 10px;
    letter-spacing: 1.7px;
    z-index: 10;
}

.breadcrumb a,
.breadcrumb strong {
    text-decoration: none;
    color: white;
    font-family: "Cinzel", serif;
}

.breadcrumb span {
    color: #c99a2e;
}

.coming-content {
    width: 100%;
    max-width: 720px;
    text-align: center;
    padding-top: 10px;
    animation: fadeUp 1s ease;
}

.brand {
    margin-bottom: 14px;
}

.brand-mark {
    font-family: "Cinzel", serif;
    font-size: 52px;
    line-height: 1;
    color: #c99a2e;
}

.brand h2 {
    font-family: "Cinzel", serif;
    color: #c99a2e;
    font-size: 15px;
    letter-spacing: 3px;
}

.gold-line {
    width: 135px;
    height: 1px;
    background: #c99a2e;
    margin: 0 auto 22px;
    position: relative;
}

.gold-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: #c99a2e;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(201, 154, 46, .8);
}

.coming-content h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(44px, 7vw, 86px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: 3px;
}

.small-line {
    width: 55px;
    height: 1px;
    background: #c99a2e;
    margin: 18px auto 20px;
}

.coming-content p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.notify-form {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 12px;
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 10px;
}

.notify-form input {
    height: 50px;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(201, 154, 46, .55);
    padding: 0 18px;
    color: white;
    font-size: 13px;
    outline: none;
    transition: .3s ease;
}

.notify-form input:focus {
    border-color: #c99a2e;
    box-shadow: 0 0 15px rgba(201, 154, 46, .12);
}

.notify-form input::placeholder {
    color: #9f9f9f;
}

.notify-form button {
    height: 50px;
    border: none;
    background: #c99a2e;
    color: black;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: .35s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(201, 154, 46, .35);
}

.privacy-note {
    font-size: 11px !important;
    color: #8e8e8e !important;
    margin-bottom: 34px !important;
}

.privacy-note i {
    color: #c99a2e;
    margin-right: 6px;
}

.follow-block {
    margin-bottom: 24px;
}

.follow-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.follow-title span {
    width: 90px;
    height: 1px;
    background: rgba(201, 154, 46, .4);
}

.follow-title p {
    margin: 0 !important;
    color: #c99a2e;
    font-family: "Cinzel", serif;
    letter-spacing: 3px;
    font-size: 12px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 154, 46, .35);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #c99a2e;
    font-size: 17px;
    transition: .35s ease;
}

.social-icons a:hover {
    transform: translateY(-3px) rotate(4deg);
    border-color: #c99a2e;
    background: rgba(201, 154, 46, .08);
    box-shadow: 0 0 20px rgba(201, 154, 46, .18);
}

footer {
    color: #7d7d7d;
    font-size: 9px;
    letter-spacing: 3px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@media(max-height: 720px) {
    .brand-mark {
        font-size: 42px;
    }

    .coming-content h1 {
        font-size: 58px;
    }

    .coming-content p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .privacy-note {
        margin-bottom: 22px !important;
    }

    .follow-block {
        margin-bottom: 16px;
    }
}

@media(max-width: 650px) {
    body {
        overflow: auto;
    }

    .coming-soon-page {
        height: auto;
        min-height: 100vh;
        padding: 95px 20px 45px;
    }

    .breadcrumb {
        left: 22px;
        top: 22px;
    }

    .notify-form {
        grid-template-columns: 1fr;
    }

    .notify-form button {
        width: 100%;
    }

    .follow-title span {
        width: 45px;
    }

    .social-icons {
        gap: 14px;
    }
}