:root {
    --primary-blue: #4a9fd8;
    --secondary-blue: #6ab0e6;
    --white: #eef2f6;
    --light-blue: #b8d9f0;
    --darker-blue: #7ab0d0;
    --dark-blue: #2c5a7a;
    --text-white: #eef2f6;
    --text-glow: rgba(238, 242, 246, 0.85);
    --green: #1e7e34;
    --red: #a13e3e;
    --yellow: #b68b40;
    --purple: #4a3b6e;
    --pink: #8f5e6b;
    --gradient-start: #4a9fd8;
    --gradient-end: #6ab0e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Minecraft', monospace;
    background: linear-gradient(rgba(74, 159, 216, 0.3), rgba(106, 176, 230, 0.3)), url('main.gif') center/cover fixed;
    color: var(--text-white);
    line-height: 1.6;
    letter-spacing: 1px;
    min-height: 100vh;
    font-weight: 800;
    -webkit-font-smoothing: antialiased;
    background-color: var(--darker-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(44, 90, 122, 0.97);
    border-bottom: 3px solid #6ab0e6;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    height: 85px;
    backdrop-filter: blur(8px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 61px;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-decoration: none;
}

.logo-container img {
    height: 75px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-container h1 {
    font-size: 32px;
    color: var(--text-white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    font-weight: 900;
}

.menu-toggle {
    background: none;
    border: 1px solid rgba(238, 242, 246, 0.3);
    font-size: 28px;
    color: var(--text-white);
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.menu-toggle:hover {
    background: rgba(74, 159, 216, 0.5);
    border-color: rgba(238, 242, 246, 0.5);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.auth-btn {
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Minecraft', monospace;
    font-size: 14px;
    border: none;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.login-btn {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(238, 242, 246, 0.5);
}

.register-btn {
    background: #3a7ca5;
    color: var(--text-white);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.auth-btn:hover {
    transform: translateY(-1px);
    background: #5a9ac9;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: rgba(44, 90, 122, 0.99);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    padding: 50px 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
    backdrop-filter: blur(8px);
}

.sidebar.active {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: 1px solid rgba(238, 242, 246, 0.3);
    font-size: 26px;
    color: var(--text-white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-weight: 900;
}

.sidebar-close:hover {
    background: #3a7ca5;
}

.sidebar h3 {
    color: var(--text-white);
    margin-bottom: 35px;
    font-size: 26px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(238, 242, 246, 0.2);
    text-align: center;
    font-weight: 900;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-links a {
    color: var(--text-white);
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 900;
    border: 1px solid transparent;
}

.sidebar-links a i {
    width: 24px;
    color: var(--text-white);
    font-size: 20px;
}

.sidebar-links a:hover {
    background: #3a7ca5;
    color: var(--text-white);
    transform: translateX(3px);
    border-color: rgba(238, 242, 246, 0.2);
}

.hero {
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 159, 216, 0.2) 0%, rgba(44, 90, 122, 0.3) 100%);
    z-index: -1;
}

.hero h2 {
    font-size: 56px;
    color: var(--text-white);
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    letter-spacing: 3px;
}

.hero p {
    font-size: 20px;
    color: var(--text-white);
    max-width: 850px;
    margin: 0 auto 50px;
    line-height: 1.9;
    font-weight: 800;
}

.download-area {
    padding: 120px 0;
    background: rgba(44, 90, 122, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 242, 246, 0.1);
}

.status-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.status-item {
    background: rgba(44, 90, 122, 0.5);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.status-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #5a9ac9;
}

.status-item:hover {
    border-color: rgba(238, 242, 246, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.online-dot {
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
    position: relative;
    box-shadow: 0 0 10px rgba(30, 126, 52, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(30, 126, 52, 0.3); }
    70% { transform: scale(1.1); box-shadow: 0 0 15px rgba(30, 126, 52, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(30, 126, 52, 0.3); }
}

.status-text strong {
    display: block;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 900;
}

.status-text span {
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 800;
}

.download-panel {
    background: rgba(44, 90, 122, 0.5);
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 242, 246, 0.1);
    backdrop-filter: blur(4px);
}

.os-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.os-tab {
    padding: 25px;
    border: 1px solid rgba(238, 242, 246, 0.2);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(44, 90, 122, 0.4);
    color: var(--text-white);
}

.os-tab.active {
    border-color: rgba(238, 242, 246, 0.4);
    background: #3a7ca5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.os-tab-logo {
    font-size: 48px;
    margin-bottom: 20px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.windows-logo {
    color: var(--text-white);
}

.macos-logo {
    color: var(--text-white);
}

.android-logo {
    color: var(--text-white);
}

.download-content {
    display: none;
}

.download-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.download-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-download, .btn-vt, .btn-playstore, .btn-minimum {
    flex: 1;
    min-width: 220px;
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Minecraft', monospace;
    letter-spacing: 1.5px;
    color: var(--text-white);
}

.btn-download {
    background: #5a9ac9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    transform: translateY(-2px);
    background: #7ab0e6;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-vt {
    background: #4a7a9f;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-vt:hover {
    transform: translateY(-2px);
    background: #5a8abf;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-playstore {
    background: #3a9f8a;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-playstore:hover {
    transform: translateY(-2px);
    background: #4abf9a;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-minimum {
    background: #5a6a9f;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-minimum:hover {
    transform: translateY(-2px);
    background: #6a7abf;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.requirements-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.requirements-content {
    background: #2c5a7a;
    padding: 40px;
    border-radius: 16px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(238, 242, 246, 0.2);
    backdrop-filter: blur(8px);
}

.requirements-content h3 {
    color: var(--text-white);
    margin-bottom: 25px;
    text-align: center;
    font-size: 26px;
    font-weight: 900;
}

.req-item {
    background: rgba(44, 90, 122, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid #5a9ac9;
}

.req-item h4 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 900;
}

.req-item ul {
    list-style: none;
    padding-left: 15px;
}

.req-item li {
    margin-bottom: 8px;
    color: var(--text-white);
    position: relative;
    padding-left: 22px;
    font-weight: 800;
}

.req-item li:before {
    content: "►";
    color: #6ab0e6;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.close-req {
    background: #3a7ca5;
    color: var(--text-white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 25px;
    width: 100%;
    font-family: 'Minecraft', monospace;
    transition: all 0.2s;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.close-req:hover {
    transform: translateY(-1px);
    background: #5a9ac9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.servers-section {
    padding: 100px 0;
    background: rgba(44, 90, 122, 0.3);
    border-radius: 20px;
    margin: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 242, 246, 0.1);
}

.servers-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.server-card {
    background: rgba(44, 90, 122, 0.6);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #5a9ac9;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.server-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.server-card h3 {
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 900;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-card p {
    color: var(--text-white);
}

.server-info {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(238, 242, 246, 0.2);
}

.server-stat {
    text-align: center;
}

.server-stat .number {
    font-size: 26px;
    color: var(--text-white);
    font-weight: 900;
    display: block;
}

.server-stat .label {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 800;
}

.ping-indicator {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 900;
    margin-left: 10px;
}

.ping-good {
    background: var(--green);
    color: white;
    box-shadow: 0 0 8px rgba(30, 126, 52, 0.3);
}

.ping-medium {
    background: var(--yellow);
    color: white;
    box-shadow: 0 0 8px rgba(182, 139, 64, 0.3);
}

.ping-high {
    background: var(--red);
    color: white;
    box-shadow: 0 0 8px rgba(161, 62, 62, 0.3);
}

.server-status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    animation: status-pulse 2s infinite;
    box-shadow: 0 0 10px rgba(30, 126, 52, 0.3);
}

@keyframes status-pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(30, 126, 52, 0.3); }
    70% { transform: scale(1.1); box-shadow: 0 0 15px rgba(30, 126, 52, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(30, 126, 52, 0.3); }
}

.gallery-section {
    padding: 100px 0;
    background: rgba(44, 90, 122, 0.3);
    border-radius: 20px;
    margin: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 242, 246, 0.1);
}

.gallery-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(44, 90, 122, 0.8);
    border: 1px solid rgba(238, 242, 246, 0.3);
    color: white;
    font-size: 26px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: #3a7ca5;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 25px;
}

.lightbox-nav button {
    background: rgba(44, 90, 122, 0.8);
    border: 1px solid rgba(238, 242, 246, 0.3);
    color: white;
    font-size: 26px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-nav button:hover {
    background: #3a7ca5;
    transform: scale(1.05);
}

.features-section {
    padding: 100px 0;
    background: rgba(44, 90, 122, 0.3);
    border-radius: 20px;
    margin: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 242, 246, 0.1);
}

.features-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(44, 90, 122, 0.6);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    backdrop-filter: blur(4px);
}

.feature-card:hover {
    border-color: rgba(238, 242, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: var(--text-white);
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 900;
}

.feature-card p {
    color: var(--text-white);
}

.feature-detail {
    display: none;
    margin-top: 18px;
    padding: 18px;
    background: rgba(44, 90, 122, 0.8);
    border-radius: 8px;
    border-left: 3px solid #5a9ac9;
    color: var(--text-white);
}

.feature-detail.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.support-section {
    padding: 100px 0;
    background: rgba(44, 90, 122, 0.3);
    border-radius: 20px;
    margin: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 242, 246, 0.1);
}

.support-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.support-content {
    text-align: center;
    padding: 50px;
}

.support-email {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #3a7ca5;
    color: var(--text-white);
    padding: 22px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 900;
    transition: all 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 1.5px;
}

.support-email:hover {
    transform: translateY(-3px);
    background: #5a9ac9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

footer {
    background: #1a4a6a;
    color: var(--text-white);
    padding: 80px 0 30px;
    position: relative;
    margin-top: 60px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #5a9ac9;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-grid h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #6ab0e6;
}

.footer-grid a {
    color: rgba(238, 242, 246, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.2s;
    padding: 6px 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-grid a:hover {
    color: var(--text-white);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(238, 242, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 20px;
}

.social-link:hover {
    background: #3a7ca5;
    transform: translateY(-2px) scale(1.05);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(238, 242, 246, 0.1);
    color: rgba(238, 242, 246, 0.6);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal {
    background: #2c5a7a;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.3s ease;
    border: 1px solid rgba(238, 242, 246, 0.2);
    backdrop-filter: blur(8px);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-input {
    width: 100%;
    padding: 15px;
    margin: 12px 0;
    border: 1px solid rgba(238, 242, 246, 0.2);
    border-radius: 6px;
    font-family: 'Minecraft', monospace;
    font-weight: 900;
    font-size: 16px;
    background: rgba(44, 90, 122, 0.7);
    color: var(--text-white);
}

.modal-input::placeholder {
    color: rgba(238, 242, 246, 0.6);
    opacity: 1;
}

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background: #3a7ca5;
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Minecraft', monospace;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 900;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.pokemon-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.pokemon-option {
    padding: 18px;
    border: 1px solid rgba(238, 242, 246, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    background: rgba(44, 90, 122, 0.5);
    color: var(--text-white);
}

.pokemon-option.selected {
    border-color: rgba(238, 242, 246, 0.4);
    background: #3a7ca5;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.pokemon-option img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.2s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.pokemon-option:hover img {
    transform: scale(1.08);
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: rgba(238, 242, 246, 0.8);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 900;
    font-size: 14px;
}

.forgot-password a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 3px solid rgba(238, 242, 246, 0.2);
    border-top: 3px solid #6ab0e6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 25px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .status-container, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .download-actions {
        flex-direction: column;
    }
    
    .os-options {
        grid-template-columns: 1fr;
    }
    
    .btn-download, .btn-vt, .btn-playstore, .btn-minimum {
        min-width: 100%;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    section h2, .gallery-section h2, .features-section h2, .support-section h2, .servers-section h2 {
        font-size: 30px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-container h1 {
        font-size: 20px;
    }
    
    .logo-container img {
        height: 65px;
    }
    
    .auth-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .modal {
        padding: 25px;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .auth-buttons {
        margin-left: 8px;
    }
}