/* Locked Page */

.locked-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.locked-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/landing-city.jpg") no-repeat center center;
    background-size: cover;
    filter: blur(3px);
    z-index: 1;
}

.locked-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.locked-card {
    position: relative;
    z-index: 3;
    max-width: 420px;
    width: 90%;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    text-align: center;
}

.locked-img {
    display: block;
    margin: 0 auto 20px auto;
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.locked-card h1 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.locked-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.locked-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #18a800;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.locked-btn:hover {
    background-color: #128c00;
}

.locked-note {
    margin-top: 15px;
    font-size: 13px;
    color: #555;
}

.locked-note a {
    color: #18a800;
    text-decoration: none;
    font-weight: 700;
}

.locked-note a:hover {
    text-decoration: underline;
}