/* style/style.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top, rgba(0, 180, 255, 0.15), transparent 40%),
        linear-gradient(135deg, #07152d 0%, #03101f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 950px;
}

.coming-box {
    position: relative;
    background: rgba(7, 20, 45, 0.92);
    border: 1px solid rgba(120, 170, 255, 0.2);
    border-radius: 26px;
    padding: 55px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 25px rgba(0, 140, 255, 0.08),
        inset 0 0 0 1px rgba(255,255,255,0.03);
}

.coming-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(77, 149, 255, 0.35),
        rgba(255,255,255,0.02)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.subtitle {
    color: #9fb7da;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.info-box {
    background: rgba(0, 170, 255, 0.06);
    border: 1px solid rgba(0, 170, 255, 0.15);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 35px;
}

.info-box p {
    color: #d7e7ff;
    line-height: 1.7;
    font-size: 15px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    border: none;
    outline: none;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #1dc8ff,
        #3d9cff
    );
    box-shadow: 0 0 18px rgba(61, 156, 255, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(61, 156, 255, 0.4);
}

.btn-danger {
    background: linear-gradient(
        135deg,
        #ff5f7a,
        #ff7b63
    );
    box-shadow: 0 0 18px rgba(255, 95, 122, 0.25);
}

.btn-danger:hover {
    box-shadow: 0 0 25px rgba(255, 95, 122, 0.4);
}

@media (max-width: 768px) {

    .coming-box {
        padding: 35px 25px;
    }

    h1 {
        font-size: 30px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}