* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.coming-soon-page {
    width: 100%;
    height: 100vh;
    display: flex;
}

.left-side {
    width: 65%;
    background: #050811;
    color: white;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.right-side {
    flex: 1;
    background: #5e6f9f;
    margin-left: -140px;
    position: relative;
}

.message-box {
    margin-left: 140px;
}

    .message-box h1 {
        font-size: 72px;
        line-height: 1.15;
        font-family: Georgia, serif;
        font-weight: bold;
    }


.facebook-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: black;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.25s;
}

    .facebook-button:hover {
        transform: translateY(-50%) scale(1.08);
    }

.privacy-link {
    display: inline-block;
    margin-top: 30px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    opacity: 0.85;
}

.notice-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #050811 0%, #101827 60%, #5e6f9f 100%);
    padding: 60px 20px;
    overflow-y: auto;
}

.notice-card {
    max-width: 1000px;
    margin: auto;
    background: rgba(5, 8, 17, 0.92);
    color: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

    .notice-card h1 {
        font-size: 42px;
        line-height: 1.3;
        margin-bottom: 10px;
        font-family: Georgia, serif;
    }

.last-updated {
    opacity: 0.7;
    margin-bottom: 40px;
}

.notice-card h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 26px;
}

.notice-card p,
.notice-card li {
    line-height: 1.9;
    opacity: 0.95;
}

.notice-card ul {
    padding-left: 25px;
}

.company-box {
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #5e6f9f;
    border-radius: 10px;
}

.back-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 35px;
}

    .back-link:hover {
        opacity: 1;
    }

.notice-card a {
    color: #9fb4ff;
}
.top-logo {
    position: fixed;
    top: 25px;
    left: 30px;
    z-index: 9999;
}

.layout-logo {
    width: 90px;
    height: auto;
}


@media (max-width: 900px) {

    .notice-card {
        padding: 35px;
    }

        .notice-card h1 {
            font-size: 34px;
        }
}
