:root {
    --primary-blue: #2a75bb;
    --secondary-blue: #4299e1;
    --white: #f5f7fa;
    --light-blue: #e1f0ff;
    --darker-blue: #d4e9ff;
    --dark-blue: #1a365d;
    --text-white: #f0f4f8;
    --text-glow: rgba(240, 244, 248, 0.9);
    --green: #22c55e;
    --red: #ef4444;
    --yellow: #fbbf24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Minecraft', monospace;
    background: linear-gradient(rgba(66, 153, 225, 0.2), rgba(66, 153, 225, 0.2)), 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(42, 117, 187, 0.95);
    border-bottom: 4px solid var(--primary-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(42, 117, 187, 0.2);
    padding: 18px 0;
    height: 80px;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 44px;
}

.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: 55px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.logo-container h1 {
    font-size: 32px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    font-weight: 900;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-white);
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.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: 8px;
    cursor: pointer;
    transition: all 0.3s;
    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: 3px solid var(--text-white);
}

.register-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 12px rgba(42, 117, 187, 0.25);
}

.auth-btn:hover {
    transform: translateY(-2px);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: rgba(42, 117, 187, 0.98);
    box-shadow: 5px 0 30px rgba(0,0,0,0.15);
    z-index: 2000;
    padding: 50px 30px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.sidebar.active {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 900;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sidebar h3 {
    color: var(--text-white);
    margin-bottom: 35px;
    font-size: 26px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.15);
    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: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 900;
    border: 2px solid transparent;
}

.sidebar-links a i {
    width: 24px;
    color: var(--text-white);
    font-size: 20px;
}

.sidebar-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.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(66, 153, 225, 0.3) 0%, rgba(66, 153, 225, 0.15) 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.3);
    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(66, 153, 225, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(42, 117, 187, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.status-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.status-item {
    background: rgba(66, 153, 225, 0.15);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.status-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.status-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(42, 117, 187, 0.2);
}

.online-dot {
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
    position: relative;
}

@keyframes pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.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(66, 153, 225, 0.15);
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 2px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.os-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.os-tab {
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(66, 153, 225, 0.08);
    color: var(--text-white);
}

.os-tab.active {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(42, 117, 187, 0.15);
    transform: translateY(-3px);
}

.os-tab-logo {
    font-size: 48px;
    margin-bottom: 20px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    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: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Minecraft', monospace;
    letter-spacing: 1.5px;
    color: var(--text-white);
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    box-shadow: 0 6px 18px rgba(42, 117, 187, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 117, 187, 0.4);
}

.btn-vt {
    background: rgba(76, 81, 191, 0.7);
    box-shadow: 0 6px 18px rgba(76, 81, 191, 0.3);
}

.btn-vt:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 81, 191, 0.4);
}

.btn-playstore {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.7), rgba(52, 168, 83, 0.7));
    box-shadow: 0 6px 18px rgba(61, 220, 132, 0.3);
}

.btn-playstore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(61, 220, 132, 0.4);
}

.btn-minimum {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.7), rgba(75, 85, 99, 0.7));
    box-shadow: 0 6px 18px rgba(107, 114, 128, 0.3);
}

.btn-minimum:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.4);
}

.requirements-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.requirements-content {
    background: rgba(42, 117, 187, 0.95);
    padding: 40px;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 3px solid var(--text-white);
    backdrop-filter: blur(10px);
}

.requirements-content h3 {
    color: var(--text-white);
    margin-bottom: 25px;
    text-align: center;
    font-size: 26px;
    font-weight: 900;
}

.req-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--text-white);
}

.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: var(--text-white);
    position: absolute;
    left: 0;
    font-size: 14px;
}

.close-req {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-white);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 25px;
    width: 100%;
    font-family: 'Minecraft', monospace;
    transition: all 0.3s;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(42, 117, 187, 0.25);
}

.close-req:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 117, 187, 0.35);
}

.servers-section {
    padding: 100px 0;
    background: rgba(66, 153, 225, 0.12);
    border-radius: 25px;
    margin: 30px 20px;
    box-shadow: 0 15px 40px rgba(42, 117, 187, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.servers-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.server-card {
    background: rgba(66, 153, 225, 0.15);
    padding: 25px;
    border-radius: 18px;
    border-left: 5px solid var(--text-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.server-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(42, 117, 187, 0.2);
}

.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: 2px solid rgba(255, 255, 255, 0.15);
}

.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: 18px;
    font-size: 12px;
    font-weight: 900;
    margin-left: 10px;
}

.ping-good {
    background: var(--green);
    color: white;
}

.ping-medium {
    background: var(--yellow);
    color: black;
}

.ping-high {
    background: var(--red);
    color: white;
}

.server-status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.gallery-section {
    padding: 100px 0;
    background: rgba(66, 153, 225, 0.12);
    border-radius: 25px;
    margin: 30px 20px;
    box-shadow: 0 15px 40px rgba(42, 117, 187, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.gallery-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(42, 117, 187, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.lightbox {
    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: 4000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--primary-blue);
    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(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav button:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

.features-section {
    padding: 100px 0;
    background: rgba(66, 153, 225, 0.12);
    border-radius: 25px;
    margin: 30px 20px;
    box-shadow: 0 15px 40px rgba(42, 117, 187, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.features-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(66, 153, 225, 0.15);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    backdrop-filter: blur(8px);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(42, 117, 187, 0.2);
}

.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(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 3px solid var(--text-white);
    color: var(--text-white);
}

.feature-detail.active {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.support-section {
    padding: 100px 0;
    background: rgba(66, 153, 225, 0.12);
    border-radius: 25px;
    margin: 30px 20px;
    box-shadow: 0 15px 40px rgba(42, 117, 187, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.support-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
}

.support-content {
    text-align: center;
    padding: 50px;
}

.support-email {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-white);
    padding: 22px 45px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 900;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(42, 117, 187, 0.3);
    letter-spacing: 1.5px;
}

.support-email:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 117, 187, 0.4);
}

footer {
    background: var(--dark-blue);
    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: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.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: 3px;
    background: var(--text-white);
}

.footer-grid a {
    color: #d1d9e6;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
    padding: 6px 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-grid a:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px) scale(1.1);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255,255,255,0.12);
    color: #a0aec0;
    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.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal {
    background: rgba(42, 117, 187, 0.95);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modalIn 0.4s ease;
    border: 3px solid var(--text-white);
    backdrop-filter: blur(10px);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-input {
    width: 100%;
    padding: 15px;
    margin: 12px 0;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-family: 'Minecraft', monospace;
    font-weight: 900;
    font-size: 16px;
    background: rgba(66, 153, 225, 0.15);
    color: var(--text-white);
}

.modal-input::placeholder {
    color: #e2e8f0;
    opacity: 0.8;
}

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Minecraft', monospace;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 900;
}

.pokemon-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.pokemon-option {
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    background: rgba(66, 153, 225, 0.08);
    color: var(--text-white);
}

.pokemon-option.selected {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 15px rgba(42, 117, 187, 0.15);
    transform: translateY(-3px);
}

.pokemon-option img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.pokemon-option:hover img {
    transform: scale(1.1);
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 900;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s 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;
    }
    
    .auth-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .modal {
        padding: 25px;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .auth-buttons {
        margin-left: 8px;
    }
}