* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0b0613;
    color: #f5e6c8;
    min-height: 100vh;
    overflow: hidden;
    zoom: 0.8;
}

.background {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.background img {
    background-position: 50%;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.not-allowed {
    background: rgba(25, 12, 45, 0.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 40px 20px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 0 60px rgba(180, 100, 255, 0.35);
    text-align: center;
    border: 1px solid rgba(180, 100, 255, 0.15);
    transform: translateY(35%);
}

.not-allowed h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 35px;
    line-height: 1.25;
    opacity: 0.92;
}

.geo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
    font-size: 1.25rem;
}

.geo img {
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.ip {
    opacity: 0.75;
    font-weight: 300;
}

/* INFO BLOCKS */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 10px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: all 0.2s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-3px);
}

.icon {
    font-size: 2.4rem;
    color: #f6d77a;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}

.info-card .text strong {
    color: #f6d77a;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
}

.info-card .text p {
    font-size: 1.05rem;
    line-height: 1.45;
    opacity: 0.88;
    margin: 0;
}

.info-card a {
    color: #f6d77a;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(11, 6, 19, 0.8);
    backdrop-filter: blur(8px);
}