* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background-image: url('assets/mainmenu.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.60);
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 50px;
    background-color: rgb(119 119 119 / 0.05);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 5px;
}

.navbar-logo {
    width: 26px;
    height: 26px;
}

.navbar-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: 1px;
}

.navbar-center {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 550;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.90);
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #d1d1d1;
    color: #000000;
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.btn-download:hover {
    opacity: 0.85;
}

.content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    gap: 25px;
}

.blocked-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    max-width: 800px;
}

.ip-display {
    background-color: rgb(119 119 119 / 0.10);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 15px;
    padding: 20px 40px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.blocked-desc {
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    max-width: 700px;
    line-height: 1.8;
    margin-top: 10px;
}

.page-loader {
    position: fixed;
    inset: 0;
    background-image: url('assets/mainmenu.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.page-loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.82);
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}