/* === UNDER CONSTRUCTION PAGE ONLY === */

.uc-body {
    margin: 0;
    padding: 0;
    background: #0b0c10;
    color: #f0f0f0;
    font-family: "Segoe UI", sans-serif;
}

.uc-container {
    max-width: 720px;
    margin: 50px auto;
    text-align: center;
    background: #10131a;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
}

.uc-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.uc-title {
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffcc00;
    margin-bottom: 10px;
}

.uc-subtitle {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

.uc-stripes {
    height: 20px;
    margin: 20px auto;
    max-width: 300px;
    background-image: repeating-linear-gradient(
        -45deg,
        #ffcc00,
        #ffcc00 10px,
        #333 10px,
        #333 20px
    );
    border-radius: 10px;
}

.uc-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.uc-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.15s ease;
}

.uc-btn-primary {
    background: #ffcc00;
    color: #111;
}

.uc-btn-primary:hover {
    background: #ffdd33;
}

.uc-btn-secondary {
    color: #ffcc00;
    border: 1px solid #ffcc00;
}

.uc-btn-secondary:hover {
    background: rgba(255, 204, 0, 0.12);
}

.uc-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.uc-box h2 {
    color: #ffdd55;
    font-size: 16px;
    margin-bottom: 8px;
}

.uc-box ul {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
}

.uc-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}
