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

/* Подключение шрифта Minecraft */
@font-face {
    font-family: 'Minecraft';
    src: url('fonts/minecraft.eot');
    src: url('fonts/minecraft.eot?#iefix') format('embedded-opentype'),
         url('fonts/minecraft.otf') format('opentype'),
         url('fonts/minecraft.svg') format('svg'),
         url('fonts/minecraft.ttf') format('truetype'),
         url('fonts/minecraft.woff') format('woff'),
         url('fonts/minecraft.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #000000;
    position: relative;
    min-height: 100vh;
    font-family: 'Minecraft', 'Courier New', monospace;
    overflow-x: hidden;
}

/* ===== БОКОВОЕ МЕНЮ (ПК) ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 70px;
    background-color: #1a1a1a;
    backdrop-filter: blur(10px);
    transition: width 0.3s ease;
    overflow-x: hidden;
    z-index: 100;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar:hover {
    width: 250px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.server-icon {
    width: 40px;
    height: 40px;
    border-radius: 30%;
    flex-shrink: 0;
}

.sidebar-title {
    font-size: 1.2rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sidebar:hover .sidebar-title {
    opacity: 1;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: white;
    padding-left: 5px;
}

.nav-link.active {
    color: #5555FF;
}

.nav-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.nav-link.active .nav-icon {
    filter: brightness(0) invert(0.6) sepia(1) hue-rotate(200deg) saturate(500%);
}

.nav-link:hover .nav-icon {
    filter: brightness(0) invert(0.8);
}

.nav-text {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sidebar:hover .nav-text {
    opacity: 1;
}

/* ===== ПЕРЕКЛЮЧАТЕЛЬ ЭФФЕКТОВ (ПК) ===== */
.effect-switcher {
    margin-top: auto;
    margin-bottom: 15px;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sidebar:hover .effect-switcher {
    opacity: 1;
    visibility: visible;
}

.effect-switch {
    display: flex;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
}

.effect-option {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Minecraft', 'Courier New', monospace;
    background-color: transparent;
    border: none;
}

.effect-option.active {
    background-color: #5555FF;
    color: white;
}

.effect-option:first-child {
    border-radius: 30px 0 0 30px;
}

.effect-option:last-child {
    border-radius: 0 30px 30px 0;
}

/* ===== МОБИЛЬНАЯ ВЕРХНЯЯ ПАНЕЛЬ ===== */
.mobile-top-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #1a1a1a;
    backdrop-filter: blur(10px);
    z-index: 150;
    align-items: center;
    padding: 0 15px;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
}

.mobile-top-icon {
    width: 40px;
    height: 40px;
    border-radius: 30%;
    flex-shrink: 0;
}

.mobile-top-title {
    font-size: 1.2rem;
    font-weight: bold;
    flex-grow: 1;
}

/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 66.66%;
    height: 100vh;
    background-color: #1a1a1a;
    backdrop-filter: blur(10px);
    z-index: 200;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.open {
    left: 0;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.mobile-close {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 5px 10px;
}

.mobile-close:hover {
    color: white;
}

.mobile-server-icon {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 30%;
    margin: 0 auto 15px auto;
}

.mobile-menu-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 15px;
    transition: all 0.2s ease;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link.active {
    color: #5555FF;
    background-color: rgba(85, 85, 255, 0.1);
}

.mobile-nav-icon {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.mobile-nav-link.active .mobile-nav-icon {
    filter: brightness(0) invert(0.6) sepia(1) hue-rotate(200deg) saturate(500%);
}

/* ===== МОБИЛЬНЫЙ ПЕРЕКЛЮЧАТЕЛЬ ЭФФЕКТОВ ===== */
.mobile-effect-switcher {
    margin-top: auto;
    margin-bottom: 10px;
    padding: 0;
    display: none;
}

.mobile-menu-overlay.open .mobile-effect-switcher {
    display: block;
}

.mobile-effect-switch {
    display: flex;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
}

.mobile-effect-option {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Minecraft', 'Courier New', monospace;
    background-color: transparent;
    border: none;
}

.mobile-effect-option.active {
    background-color: #5555FF;
    color: white;
}

.mobile-effect-option:first-child {
    border-radius: 25px 0 0 25px;
}

.mobile-effect-option:last-child {
    border-radius: 0 25px 25px 0;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
.main-content {
    margin-left: 70px;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
    padding: 40px;
    gap: 40px;
}

.left-section {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    max-width: 70%;
}

.content-card {
    background-image: url('photos/background.png');
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    padding: 50px 45px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: 25px;
    z-index: 0;
}

.content-card > * {
    position: relative;
    z-index: 1;
}

.welcome-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    font-weight: normal;
    white-space: nowrap;
}

.server-name {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 0px #2a2a2a;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.blue {
    color: #5555FF;
}

.red {
    color: #FF5555;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}

/* Блок статуса сервера и IP */
.server-status-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    width: 100%;
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: auto;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #808080;
    transition: all 0.3s ease;
}

.status-dot.online {
    background-color: #55FF55;
    box-shadow: 0 0 8px #55FF55;
}

.status-dot.offline {
    background-color: #FF5555;
    box-shadow: 0 0 8px #FF5555;
}

.status-text {
    font-size: 0.9rem;
    color: white;
    white-space: nowrap;
}

.online-count {
    color: #55FF55;
    font-weight: bold;
}

/* Кнопка копирования IP */
.ip-copy-container {
    display: inline-flex;
}

.ip-button {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.02);
}

.ip-text, .copy-text {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: 'Minecraft', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1;
    white-space: nowrap;
}

.ip-text {
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.copy-text {
    top: 200%;
    transform: translateY(0);
    color: #888888;
}

.ip-button.copied .ip-text {
    transform: translateY(-150%);
    opacity: 0;
}

.ip-button.copied .copy-text {
    transform: translateY(-50%);
    top: 50%;
}

.ip-button.copy-success .copy-text {
    color: #55FF55;
}

.right-section {
    flex: 2;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
}

.right-section::-webkit-scrollbar {
    width: 6px;
}

.right-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.right-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* ===== СТИЛИ ДЛЯ ПРАВОЙ СЕКЦИИ ===== */
.players-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.player-card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: scale(1.02);
    background-color: rgba(0, 0, 0, 0.7);
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.player-name {
    font-size: 2rem;
    color: white;
}

.player-role {
    font-size: 1.5rem;
}

/* Роли игроков */
.role-gl_admin {
    color: #FF5555;
}

.role-admin {
    color: #FF5555;
}

.role-gl_moderator {
    color: #5555FF;
}

.role-st_moderator {
    color: #5555FF;
}

.role-moderator {
    color: #5555FF;
}

.role-gl_helper {
    color: #FFAA55;
}

.role-st_helper {
    color: #FFAA55;
}

.role-helper {
    color: #FFAA55;
}

.role-beta {
    color: #FFFF55;
}

.player-stats {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.player-join-date {
    color: #AAAAAA;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.player-days {
    color: #55FF55;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Стили для правил */
.rules-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.rules-section {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    padding: 15px 20px;
    border-left: 4px solid #5555FF;
}

.rules-title {
    font-size: 1.5rem;
    color: #5555FF;
    margin-bottom: 12px;
    font-weight: bold;
}

.rules-subrule {
    font-size: 1.1rem;
    color: #DDDDDD;
    margin-left: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.rules-subsubrule {
    font-size: 0.95rem;
    color: #AAAAAA;
    margin-left: 40px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.rules-punishment {
    color: #FF8888;
    font-size: 0.9rem;
}

/* Стили для функций */
.functions-container {
    width: 100%;
}

.functions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.function-item {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    padding: 12px 18px;
    border-left: 4px solid #5555FF;
    font-size: 1rem;
    color: #DDDDDD;
    line-height: 1.4;
}

.function-item .note-gray {
    color: #AAAAAA;
    font-size: 0.9rem;
}

.function-item .mod-name-bold {
    font-weight: bold;
    color: white;
}

.mods-title {
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 0px #2a2a2a;
    margin: 20px 0 20px 0;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.mods-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mod-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    padding: 12px 20px;
    border-left: 4px solid #5555FF;
    gap: 15px;
    transition: all 0.3s ease;
}

.mod-card:hover {
    transform: scale(1.01);
    background-color: rgba(0, 0, 0, 0.6);
}

.mod-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.mod-type {
    font-size: 0.85rem;
    color: #5555FF;
}

.mod-name {
    font-size: 1.1rem;
    color: white;
}

.download-btn {
    background-color: #55FF55;
    color: #000000;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Minecraft', 'Press Start 2P', monospace;
    flex-shrink: 0;
}

.download-btn:hover {
    background-color: #33CC33;
    transform: scale(1.05);
}

/* Стили для новостей */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.news-card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: scale(1.02);
    background-color: rgba(0, 0, 0, 0.7);
}

.news-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #5555FF;
    margin-bottom: 12px;
}

.news-divider {
    height: 2px;
    background: linear-gradient(90deg, #5555FF, transparent);
    margin-bottom: 15px;
}

.news-image {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.news-description {
    font-size: 0.95rem;
    color: #DDDDDD;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #AAAAAA;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-date-icon {
    font-size: 0.9rem;
}

.news-timeago {
    color: #888888;
}

/* Последняя новость на главной */
.latest-news-section {
    width: 100%;
}

.latest-news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.latest-news-icon {
    font-size: 1.5rem;
}

.latest-news-title {
    font-size: 1.2rem;
    color: #FFAA55;
    font-weight: bold;
}

.news-card.latest {
    margin-bottom: 15px;
}

.latest-news-image {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.latest-news-image img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.all-news-link {
    text-align: center;
    margin-top: 5px;
}

.all-news-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(85, 85, 255, 0.2);
    color: #5555FF;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(85, 85, 255, 0.3);
}

.all-news-btn:hover {
    background-color: rgba(85, 85, 255, 0.4);
    transform: scale(1.05);
}

/* Стили для FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    border-left: 4px solid #5555FF;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question-text {
    font-size: 1.2rem;
    color: #DDDDDD;
}

.faq-question-text .bold-quote {
    font-weight: bold;
    color: #FFAA55;
}

.faq-question-text .admin-name {
    color: #5555FF;
    font-weight: bold;
}

.faq-toggle {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 8px;
    display: inline-block;
}

.faq-answer {
    padding: 0 20px 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.faq-answer-text {
    font-size: 1rem;
    color: #AAAAAA;
    line-height: 1.5;
    margin-bottom: 10px;
}

.faq-answer-text .bold-quote {
    font-weight: bold;
    color: #FFAA55;
}

.faq-answer-text .admin-name {
    color: #5555FF;
    font-weight: bold;
}

.faq-answer-text .role-moderator {
    color: #5555FF;
    font-weight: bold;
}

.faq-answer-text .role-beta {
    color: #FFFF55;
    font-weight: bold;
}

.faq-hide-toggle {
    font-size: 0.8rem;
    color: #888888;
    display: inline-block;
    cursor: pointer;
}

.faq-hide-toggle:hover {
    color: #AAAAAA;
}

/* Стили для страницы установки скина */
.skin-redirect {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.skin-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
}

.skin-title {
    font-size: 2rem;
    color: #5555FF;
    margin-bottom: 20px;
    font-weight: bold;
}

.skin-description {
    font-size: 1rem;
    color: #DDDDDD;
    line-height: 1.6;
    margin-bottom: 30px;
}

.skin-command {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 8px;
    font-family: monospace;
    color: #55FF55;
}

.skin-button {
    display: inline-block;
    background: linear-gradient(135deg, #5555FF, #3333CC);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.skin-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(85, 85, 255, 0.5);
}

.skin-note {
    font-size: 0.85rem;
    color: #AAAAAA;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-message {
    color: #FF5555;
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
}

.right-placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .mobile-top-bar {
        display: flex;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 0;
    }
    
    .container {
        flex-direction: column;
        padding: 20px;
        padding-top: 80px;
        gap: 20px;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: 100vh;
    }
    
    .left-section {
        max-width: 100%;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .content-card {
        padding: 20px;
        text-align: left;
        width: 100%;
    }
    
    .welcome-title {
        font-size: 1.6rem;
        white-space: normal;
        margin-bottom: 15px;
    }
    
    .server-name {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .server-status-wrapper {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
    }
    
    .server-status {
        padding: 11px 12px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .status-text {
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .status-dot {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
    }
    
    .ip-button {
        padding: 5px 12px; /*5 12*/
        min-width: 150px;
        height: 32px;
        flex-shrink: 1;
    }
    
    .ip-text, .copy-text {
        font-size: 0.65rem;
        white-space: nowrap;
    }
    
    .right-section {
        min-height: 200px;
        width: 100%;
        max-height: none;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
        padding-top: 70px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .welcome-title {
        font-size: 1.3rem;
    }
    
    .server-name {
        font-size: 1.6rem;
    }
    
    .description {
        font-size: 0.75rem;
    }
    
    .server-status-wrapper {
        gap: 8px;
    }
    
    .server-status {
        padding: 8px 10px;
    }
    
    .status-text {
        font-size: 0.65rem;
    }
    
    .status-dot {
        width: 7px;
        height: 7px;
    }
    
    .ip-button {
        padding: 4px 10px; /*4 10*/
        min-width: 135px;
        height: 30px;
    }
    
    .ip-text, .copy-text {
        font-size: 0.6rem;
    }
    
    .mobile-top-icon {
        width: 35px;
        height: 35px;
    }
    
    .mobile-top-title {
        font-size: 1rem;
    }
    
    .mobile-menu-overlay {
        width: 70%;
    }
    
    .mobile-server-icon {
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-title {
        font-size: 1.4rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 10px 12px;
    }
    
    .mobile-nav-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
        padding-top: 60px;
    }
    
    .content-card {
        padding: 12px;
    }
    
    .welcome-title {
        font-size: 1.1rem;
    }
    
    .server-name {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 0.65rem;
    }
    
    .server-status-wrapper {
        gap: 6px;
    }
    
    .server-status {
        padding: 7px 8px; /*3 8*/
    }
    
    .status-text {
        font-size: 0.6rem;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .ip-button {
        padding: 3px 8px; /*3 8*/
        min-width: 130px; /*115*/
        height: 28px;
    }
    
    .ip-text, .copy-text {
        font-size: 0.55rem;
    }
    
    .mobile-top-icon {
        width: 30px;
        height: 30px;
    }
    
    .mobile-top-title {
        font-size: 0.9rem;
    }
    
    .mobile-menu-overlay {
        width: 80%;
    }
    
    .mobile-server-icon {
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-title {
        font-size: 1.2rem;
    }
    
    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    .mobile-nav-icon {
        width: 22px;
        height: 22px;
    }
    
    .mod-card {
        flex-direction: column;
        text-align: center;
    }
    
    .mod-info {
        text-align: center;
    }
    
    .download-btn {
        align-self: center;
    }
}
