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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #f8fafc 0%, #edf2f7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: #1e293b;
}

.card {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 3rem;
    box-shadow: 0 30px 60px -10px rgba(0, 20, 40, 0.25), 0 0 0 1px rgba(255,255,255,0.5) inset;
    padding: 2.5rem 2.8rem;
    transition: all 0.2s ease;
}

.header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
    margin-bottom: 2.8rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-symbol {
    background: #0f1825;
    color: white;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 15px -5px rgba(0,0,0,0.2);
}

.logo-text {
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f1825, #2d3a4f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.notice-pill {
    background: #feeec8;
    border-radius: 60px;
    padding: 0.6rem 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #7b4a1e;
    border: 1px solid #ffdb9d;
    box-shadow: 0 4px 8px rgba(255, 180, 60, 0.15);
    backdrop-filter: blur(4px);
}

.notice-pill i {
    font-size: 1.1rem;
    color: #b95e00;
}

.alert-box {
    background: #fff6e5;
    border-left: 8px solid #f59e0b;
    border-radius: 28px;
    padding: 1.5rem 2.2rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 20px -10px rgba(245, 158, 11, 0.2);
}

.alert-icon {
    background: #f59e0b20;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #b45400;
}

.alert-content {
    flex: 1;
}

.alert-content h3 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #7b4a1e;
}

.alert-content p {
    color: #433e3c;
    line-height: 1.5;
    font-weight: 400;
}

.alert-content strong {
    background: #f59e0b;
    color: #ffffff;
    padding: 0.1rem 0.6rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.3rem;
}

.access-panel {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
    padding: 2rem 2.2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 8px 20px -10px rgba(0,20,40,0.1);
}

.access-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #576c85;
    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.btn {
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: 0.15s;
    background: white;
    color: #1e2a3a;
    box-shadow: 0 5px 12px rgba(0,0,0,0.03);
    border: 1px solid #dde7f0;
    text-decoration: none;
}

.btn-primary {
    background: #0f1825;
    color: white;
    border: 1px solid #1f3142;
    box-shadow: 0 12px 18px -10px #0f182580;
}

.btn-primary i {
    color: #b7c9e0;
}

.btn-outline {
    background: transparent;
    border: 1px solid #b6c8db;
    backdrop-filter: blur(4px);
}

.btn-outline i {
    color: #4f6f8f;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 25px -12px #1e293b60;
}

.btn-primary:hover {
    background: #1d2a3b;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    color: #536e82;
    font-size: 0.95rem;
    border-top: 2px dashed #cbd5e1;
    padding-top: 1.8rem;
}

.terms {
    display: flex;
    gap: 2rem;
}

.terms a {
    text-decoration: none;
    color: #2c3f57;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.1s;
    border-bottom: 2px solid transparent;
}

.terms a:hover {
    color: #0f172a;
    border-bottom-color: #f59e0b;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.75;
}

@media (max-width: 600px) {
    .card {
        padding: 1.8rem 1.5rem;
        border-radius: 2rem;
    }
    .header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .alert-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    .button-group .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-links {
        flex-direction: column-reverse;
        gap: 1rem;
        align-items: flex-start;
    }
}

.wiki-logo-svg {
    font-size: 2rem;
}
