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

body {
    font-family: "Segoe UI", sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #2a3442, #1f2733);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 650px;
    width: 90%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content {
    text-align: center;
    margin-top: 40px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 25px;
}

.progress-container {
    width: 420px;
    max-width: 90%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    width: 65%;
    height: 100%;
    background: #8fb4e8;
}

.progress-text {
    width: 420px;
    max-width: 90%;
    margin: 6px auto 25px auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
}

.notify-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #8fb4e8;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    margin-bottom: 40px;
}

.notify-btn:hover {
    background: #6e9ddb;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.socials a {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.socials a:hover {
    background: white;
    color: #1f2733;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #1f2733;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin: 20px 0;
    border-radius: 4px;
    border: none;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background: #8fb4e8;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-content button:hover {
    background: #6e9ddb;
}

.success-message {
    display: none;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logo {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .progress-container,
    .progress-text {
        width: 90%;
    }

    .socials a {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

.legal-wrapper {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.legal-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.legal-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 8px;
    line-height: 1.8;
}

.legal-back {
    margin-top: 40px;
    text-align: center;
}

.legal-back a {
    color: #8fb4e8;
    text-decoration: none;
    font-weight: 500;
}

.legal-back a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-box {
        padding: 25px;
    }

    .legal-wrapper {
        margin: 40px auto;
    }
}

.legal-long {
    line-height: 1.7;
}

.legal-long h2 {
    margin-top: 40px;
}

.legal-long h3 {
    margin-top: 25px;
    font-size: 1rem;
}

.legal-long p {
    margin-bottom: 12px;
}

.legal-long ul {
    margin-left: 20px;
    margin-bottom: 15px;
}