/* Общие */
* { margin: 0; padding: 0; box-sizing: border-box;}
html { scroll-behavior: smooth; }

/* Основной шрифт для всего сайта */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* чуть жирнее */
    color: #fff;
    background: #000;
}

@font-face {
    font-family: 'Bender';
    src: url('/fonts/bender.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.demo-title {
    font-family: 'Bender', sans-serif;
    font-size: 48px;
    font-weight: normal;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    top: -375px;
}

h6.demo-title {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 12px;
}
h5.demo-title {
    position: relative;
    top: 249px;
    font-size: 33px;
}
.weapon-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    user-select: none;
    margin-right:140px;
}
.weapon-title .gap {
    width: 140px;
}
.weapon-switch .arrow {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    transition: opacity 0.2s ease;
}
.weapon-switch .arrow:hover {
    opacity: 0.7;
}
.weapon-switch .counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.animate-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-text.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-text.delay-1 { transition-delay: 0.1s; }
.animate-text.delay-2 { transition-delay: 0.2s; }
.animate-text.delay-3 { transition-delay: 0.3s; }
.animate-text.delay-4 { transition-delay: 0.4s; }
.animate-text.delay-5 { transition-delay: 0.5s; }
.animate-text.delay-6 { transition-delay: 0.6s; }
.animate-text.delay-7 { transition-delay: 0.7s; }
.parallax-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.layer-back, .layer-mid {
    z-index: 2;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.layer-back { z-index: 0; }
.layer-mid { z-index: 1; }
.how-to-text { position: relative; z-index: 2; }
.how-to-text {
    transition: transform 0.2s ease-out;
}
#how-to-play {
    position: relative;
    overflow: visible;
    z-index: 2;
    min-height: 100vh;
    background-color: transparent;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.parallax-bg {
    position: absolute;
    inset: 0;
    background: url("/images/how-to-play.webp") center / cover no-repeat;
    transform: translateY(0);
    will-change: transform;
    z-index: 0;
}
.parallax-section > *:not(.parallax-bg) {
    position: relative;
    z-index: 2;
}
.weapon-title {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin: 0 auto;

    font-family: 'Bender', sans-serif;
    pointer-events: auto;
    transform: translateY(920%);
}
.word {
    width: 120px;
    text-align: center;
    white-space: nowrap;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}
.word.hide-left {
    opacity: 0;
    transform: translateX(-20px);
}
.word.hide-right {
    opacity: 0;
    transform: translateX(20px);
}
.gradient-text {
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 29px;
}
.parallax-layer {
    pointer-events: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: auto;
}
.how-to-text {
    position: relative;
    z-index: 10001;
    max-width: 700px;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}
.how-to-img {
    position: relative;
    z-index: 2;
    max-width: 520px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.how-to-img img {
    width: 100%;
    transition: transform 0.2s ease-out;
    will-change: transform;
}
.slider {
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 1.2s ease-in-out;
}
.slides img {
  width: 100%;
}
.mechanics-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 2;
}
.mechanics-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mechanics-slide.active {
    opacity: 1;
    transform: translateX(0);
}
.mechanics-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}
.mechanics-slide.next {
    opacity: 1;
    transform: translateX(0);
}
.mechanics-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.mechanics-slide img:hover {
    transform: scale(1.02);
}
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    z-index: 3;
    position: relative;
}
.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-indicator.active {
    background: #ff1a1a;
    transform: scale(1.2);
}
.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}
.mechanics-parallax {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.mechanics-section {
    perspective: 1500px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    z-index: 1;
}
.mechanics-subtitle {
    position: absolute;
    top: 150px;
    left: 900px;
    transform: translateX(-50%);
    font-family: 'Bender', sans-serif;
    font-size: 32px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 3;
    pointer-events: none;
}
.static-item {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
}
.mechanics-parallax {
    position: absolute;
    inset: 0;
    background: url("/images/gears.webp") center / cover no-repeat;
    z-index: 0;
}
.mechanics-section .overlay {
    display: none;
}
.mechanics-info {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.mechanics-item {
    position: absolute;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    opacity: 1;
}
.mechanics-item.hidden {
    opacity: 0;
}
.mechanics-item.hovered {
    filter: brightness(1.25) drop-shadow(0 0 8px rgba(255,255,255,0.35));
}
.mechanics-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 1.2s ease-in-out,
    transform 2s ease;
  will-change: opacity, transform;
}
.mechanics-bg.active {
  opacity: 1;
  transform: scale(1);
}
.mechanics-bg.fade-out {
    opacity: 0;
}
.mechanics-item.hovered::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
    border-radius: 6px;
    pointer-events: none;
}
.item-1 {
    transform-origin: 50% 50%;
}
.item-2 {
    transform-origin: 50% 50%;
}
.item-3 {
    transform-origin: 50% 50%;
}
.mechanics-section h2,
.mechanics-section ul {
    position: relative;
    z-index: 2;
}
#preloader.hidden {
    opacity: 0;
    pointer-events: none;
     transition: opacity 0.5s ease;
}
.preloader-logo img {
    width: 120px;
    margin-bottom: 20px;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #ff1a1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.welcome-title {
    font-family: 'Bender', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.welcome-title .highlight {
    color: #ffffff;
}
.how-to-subtitle {
    font-family: 'Bender', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.how-to-steps {
    list-style: decimal inside;
    line-height: 2.0;
    font-family: 'Bender', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
.how-to-steps li {
    margin-bottom: 12px;
}
.resourcepack-wrap {
    margin-top: 20px;
    position: relative;
    z-index: 100000;
}
.resourcepack-dd {
    position: relative;
    display: inline-block;
    z-index: 100000;
}

.resourcepack-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 320px;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 26, 26, 0.15);
    padding: 12px 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(15px);
}
.resourcepack-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.resourcepack-dropdown-title {
    font-family: 'Bender', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}
.resourcepack-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border-left: 3px solid transparent;
}
.resourcepack-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #ff1a1a;
}
.resourcepack-option .rp-name {
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.resourcepack-option .rp-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}
.rp-name-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.rp-size {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(5px);
    z-index: 1000;
    font-family: 'Bender', sans-serif;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    transition:
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    will-change: transform, opacity;
    overflow: hidden;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }
    
    .navbar nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navbar nav.active {
        max-height: 400px;
        margin-top: 15px;
    }
    
    .navbar nav a {
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .navbar nav a:last-child {
        border-bottom: none;
    }
    
    .logo-block {
        order: 1;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .auth {
        order: 4;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    
    .auth .login-link {
        display: block;
        width: 100%;
    }
}
.navbar::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/footer-texture.png');
    background-repeat: repeat;
    background-size: 100px 100px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.navbar > * {
    position: relative;
    z-index: 1;
}
.navbar--hidden {
    transform: translateY(-100%);
    opacity: 0;
}
.server-monitor {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.server-monitor:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 26, 26, 0.3);
    transform: translateY(-2px);
}
.server-ip {
    color: #ffffff;
    font-weight: 600;
}
.about {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about.visible {
    opacity: 1;
    transform: translateY(0);
}
.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about p, .about ul {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.about ul {
    text-align: left;
    padding-left: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.8);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}
.server-players {
    opacity: 0.8;
}
.server-monitor:hover .server-ip {
    text-decoration: underline;
}
.navbar--hidden { transform: translateY(-100%); }
.navbar nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 120px;
}
.navbar nav a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.navbar nav a:hover {
    color: #ff1a1a;
}
.auth { display: flex; gap: 15px; }
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 0; 
}
.hero-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}
.hero-content {
    position: relative; 
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 40px;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.server-monitor {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.server-monitor:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 26, 26, 0.3);
    transform: translateY(-2px);
}
.hero h1 {
    font-family: 'Bender', sans-serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero p {
    font-family: 'Bender', sans-serif;
    font-size: 18px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    max-width: 900px;
    margin-bottom: 30px;
    line-height: 1.5;
}
/* === ПРОКАЧАННЫЕ КНОПКИ === */

/* Основная красная кнопка */
.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 50%, #ff1a1a 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(255, 26, 26, 0.4),
        0 0 0 0 rgba(255, 26, 26, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-red:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 26, 26, 0.6),
        0 0 20px rgba(255, 26, 26, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-red:hover::before {
    left: 100%;
}

.btn-red:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Обычная кнопка */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #333 0%, #666 50%, #333 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-family: 'Bender', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Кнопка логина */
.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #444 0%, #777 50%, #444 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-family: 'Bender', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-login::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-login:hover {
    background-position: 100% 0;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-login:hover::after {
    transform: translateX(100%);
}

/* Кнопка ресурспака */
.btn-resourcepack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 25%, #ff1a1a 50%, #cc0000 75%, #ff1a1a 100%);
    background-size: 300% 300%;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 26, 26, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(255, 26, 26, 0.4),
        0 0 0 0 rgba(255, 26, 26, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-resourcepack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 50%, 
        transparent 75%, 
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    animation: resourcepackShine 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-resourcepack:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(255, 26, 26, 0.6),
        0 0 30px rgba(255, 26, 26, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-resourcepack:hover::before {
    opacity: 1;
}

.btn-resourcepack:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

@keyframes resourcepackShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Кнопка логина в навбаре */
.login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.1) 0%, rgba(255, 26, 26, 0.2) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-family: 'Bender', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 26, 26, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(255, 26, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.login-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-link:hover {
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.2) 0%, rgba(255, 26, 26, 0.4) 100%);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 26, 26, 0.5);
    box-shadow: 
        0 4px 15px rgba(255, 26, 26, 0.4),
        0 0 20px rgba(255, 26, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
}

.login-link:hover::before {
    left: 100%;
}
.about {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}
.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about p {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.6;
}
.logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}
.logo-block .logo-text {
    transition: color 0.3s ease;
    color: #fff;
}
.logo-block:hover .logo-text {
    color: #ff3c00;
}
.logo-img {
    height: 90px;
    width: auto;
}
.logo-text {
    font-weight: bold;
    font-size: 18px;
}
.scroll-fade-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: #ff1a1a;
    text-decoration: none;
    animation: bounce 1.5s infinite;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 26, 26, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scroll-down:hover {
    background: rgba(255, 26, 26, 0.1);
    border-color: rgba(255, 26, 26, 0.5);
    transform: translateX(-50%) scale(1.1);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}
.footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ff1a1a 20%, #ff1a1a 80%, transparent 100%);
    opacity: 0.6;
    z-index: 1;
}
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/footer-texture.png');
    background-repeat: repeat;
    background-size: 100px 100px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.footer-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 16px;
}
.footer-brand {
    flex: 1;
    min-width: 180px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 4px;
    transition: color 0.25s ease;
}
.footer-logo:hover {
    color: #ff1a1a;
}
.footer-logo-img {
    height: 32px;
    width: auto;
}
.footer-logo-text {
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}
.footer-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    max-width: 220px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
}
.footer-nav a {
    font-family: 'Bender', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-nav a:hover {
    color: #ff1a1a;
}
.footer-connect {
    text-align: right;
    min-width: 140px;
}
.footer-connect-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}
.footer-ip {
    font-family: 'Bender', sans-serif;
    font-size: 14px;
    color: #ff1a1a;
    cursor: pointer;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}
.footer-ip:hover {
    color: #ff4444;
    text-decoration: underline;
}
.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}
/* === RESPONSIVE DESIGN - MOBILE ADAPTATION === */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .hero h1 {
        font-size: 64px;
    }
    
    .welcome-title {
        font-size: 56px;
    }
    
    .demo-title {
        font-size: 56px;
    }
    
    .features-title {
        font-size: 48px;
    }
}

/* Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .mechanics-item {
        max-width: 90%;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .navbar {
        padding: 0 30px;
    }
    
    .navbar nav {
        gap: 15px;
        margin-right: 80px;
    }
    
    .navbar nav a {
        font-size: 16px;
    }
    
    .mechanics-item {
        max-width: 80%;
    }
    
    .weapon-title {
        transform: translateY(850%);
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    /* Navbar */
    .navbar {
        padding: 0 20px;
        height: 60px;
    }
    
    .navbar nav {
        gap: 10px;
        margin-right: 40px;
    }
    
    .navbar nav a {
        font-size: 14px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 16px;
        max-width: 90%;
    }
    
    .server-monitor {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* How to Play */
    .welcome-title {
        font-size: 38px;
    }
    
    .how-to-subtitle {
        font-size: 24px;
    }
    
    .how-to-steps {
        font-size: 18px;
    }
    
    /* Mechanics Section */
    .demo-title {
        font-size: 38px;
    }
    
    h6.demo-title {
        font-size: 24px;
    }
    
    .weapon-title {
        transform: translateY(800%);
    }
    
    .mechanics-item {
        max-width: 70%;
    }
    
    /* Features */
    .features-title {
        font-size: 36px;
    }
    
    .features-infographic {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    /* Navbar - Mobile Menu */
    .navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 15px;
    }
    
    .navbar nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        margin: 10px 0 0 0;
        display: none;
    }
    
    .navbar nav.active {
        display: flex;
    }
    
    .navbar nav a {
        padding: 8px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .logo-block {
        order: 1;
    }
    
    .auth {
        order: 2;
        margin-left: auto;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 14px;
        max-width: 100%;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .server-monitor {
        flex-direction: column;
        gap: 6px;
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .scroll-down {
        width: 45px;
        height: 45px;
        font-size: 26px;
        bottom: 30px;
    }
    
    /* How to Play */
    #how-to-play {
        padding: 60px 16px;
    }
    
    .welcome-title {
        font-size: 32px;
    }
    
    .how-to-subtitle {
        font-size: 22px;
    }
    
    .how-to-steps {
        font-size: 16px;
        max-width: 100%;
    }
    
    .resourcepack-dropdown {
        min-width: 280px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Mechanics Section */
    .mechanics-section {
        padding: 60px 16px;
        min-height: 80vh;
    }
    
    .demo-title {
        font-size: 32px;
        top: -300px;
    }
    
    h6.demo-title {
        font-size: 20px;
    }
    
    .weapon-title {
        flex-direction: column;
        gap: 15px;
        transform: translateY(600%);
    }
    
    .weapon-switch {
        margin-right: 0;
    }
    
    .mechanics-item {
        display: none !important;
    }
    
    /* Features */
    .features-section {
        padding: 60px 16px;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-infographic {
        gap: 12px;
    }
    
    .features-infographic li {
        font-size: 15px;
        padding: 8px 12px;
    }
    
    /* Footer */
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-connect {
        text-align: center;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    /* Navbar */
    .navbar {
        padding: 8px 12px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .login-link {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .btn-red {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .server-monitor {
        font-size: 11px;
        padding: 10px 14px;
    }
    
    .scroll-down {
        width: 40px;
        height: 40px;
        font-size: 24px;
        bottom: 20px;
    }
    
    /* How to Play */
    .welcome-title {
        font-size: 26px;
    }
    
    .how-to-subtitle {
        font-size: 20px;
    }
    
    .how-to-steps {
        font-size: 14px;
    }
    
    .btn-resourcepack {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .resourcepack-dropdown {
        min-width: 260px;
    }
    
    /* Mechanics */
    .demo-title {
        font-size: 24px;
        top: -250px;
    }
    
    h6.demo-title {
        font-size: 16px;
    }
    
    .weapon-title {
        transform: translateY(500%);
    }
    
    .gradient-text {
        font-size: 22px;
    }
    
    /* Features */
    .features-title {
        font-size: 28px;
    }
    
    .features-infographic li {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-logo-img {
        height: 28px;
    }
    
    .footer-logo-text {
        font-size: 14px;
    }
    
    .footer-tagline {
        font-size: 10px;
    }
    
    .footer-nav a {
        font-size: 12px;
    }
    
    .footer-ip {
        font-size: 13px;
    }
}

/* Extra Small Mobile (max 374px) */
@media (max-width: 374px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 12px;
    }
    
    .welcome-title {
        font-size: 22px;
    }
    
    .how-to-subtitle {
        font-size: 18px;
    }
    
    .demo-title {
        font-size: 20px;
    }
    
    .features-title {
        font-size: 24px;
    }
    
    .btn-red,
    .btn-resourcepack {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Responsive improvements for main page */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .server-monitor {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .welcome-title {
        font-size: 36px;
    }
    
    .how-to-subtitle {
        font-size: 24px;
    }
    
    .how-to-steps {
        font-size: 18px;
    }
    
    #how-to-play,
    .mechanics-section,
    .features-section {
        padding: 60px 16px;
    }
}

@media (max-width: 700px) {
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand { max-width: none; }
    .footer-tagline { max-width: none; margin: 0 auto; }
    .footer-connect { text-align: center; }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .welcome-title {
        font-size: 28px;
    }
    
    .how-to-subtitle {
        font-size: 20px;
    }
    
    .how-to-steps {
        font-size: 16px;
    }
    
    .scroll-down {
        width: 40px;
        height: 40px;
        font-size: 24px;
        bottom: 30px;
    }
}

/* --- Плавные переходы между секциями --- */
.info-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    opacity: 1;
    transform: translateY(0);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,26,26,0.3) 20%, rgba(255,26,26,0.6) 50%, rgba(255,26,26,0.3) 80%, transparent 100%);
    opacity: 0.8;
}

.info-section h2, .info-section p, .info-section ul {
    position: relative;
    z-index: 1;
}

.info-section ul {
    text-align: left;
    max-width: 700px;
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
}

#how-to-play {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.mechanics-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%);
}

.features-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%) !important;
}

.how-to-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- Features (Особенности ZOMBUM) --- */
.features-section {
    background: #0a0a0a !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}
.features-parallax {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.features-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 2s ease;
    will-change: opacity, transform;
}
.features-bg.active {
    opacity: 1;
    transform: scale(1);
}
.features-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.features-title {
    font-family: 'Bender', sans-serif;
    font-size: 42px;
    font-weight: normal;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 28px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8));
}
.features-slider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    user-select: none;
}
.features-slider-row .arrow {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    transition: opacity 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8));
}
.features-slider-row .arrow:hover {
    opacity: 0.7;
}
.features-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
    min-width: 44px;
    text-align: center;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8));
}
.features-infographic {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 40px;
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}
.features-infographic li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bender', sans-serif;
    font-size: 17px;
    color: #fff;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid #ff1a1a;
    border-radius: 0 8px 8px 0;
    transition: background 0.25s ease, transform 0.2s ease;
}
.features-infographic li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}
.features-infographic .fi-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff1a1a;
    border-radius: 50%;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .features-infographic { grid-template-columns: 1fr; }
    .features-title { font-size: 32px; }
}

/* === NEWS PAGE STYLES === */
.news-page {
    background: #000;
    min-height: 100vh;
    padding-top: 70px;
}

.news-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/how-to-play.webp') center / cover no-repeat;
    filter: blur(2px) brightness(0.4);
    transform: scale(1.1);
    z-index: 0;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(255,26,26,0.1) 100%);
    z-index: 1;
}

.news-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.news-title {
    font-family: 'Bender', sans-serif;
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 16px;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
}

.news-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.news-content {
    background: #0a0a0a;
    position: relative;
    padding: 60px 0;
}

.news-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ff1a1a 20%, #ff1a1a 80%, transparent 100%);
    opacity: 0.6;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 26, 26, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.news-item.featured {
    border-color: rgba(255, 26, 26, 0.5);
    background: rgba(255, 26, 26, 0.05);
}

.news-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff1a1a, #cc0000);
}

.news-image {
    position: relative;
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #ff1a1a, #cc0000);
    color: #fff;
    padding: 4px 12px;
    border-radius: 16px;
    font-family: 'Bender', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.news-text {
    flex: 1;
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.news-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-category {
    background: rgba(255, 255, 255, 0.1);
    color: #ff1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.news-item h2,
.news-item h3 {
    font-family: 'Bender', sans-serif;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.news-item h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.news-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.news-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.news-highlights span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 26, 26, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 2px solid #ff1a1a;
}

/* Active navigation link */
.navbar nav a.active {
    color: #ff1a1a;
    position: relative;
}

.navbar nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff1a1a;
    border-radius: 1px;
}

/* Responsive design */
@media (max-width: 768px) {
    .news-title {
        font-size: 36px;
    }
    
    .news-subtitle {
        font-size: 16px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 0;
    }
    
    .news-image {
        width: 100%;
        height: 180px;
    }
    
    .news-text {
        padding: 20px;
    }
    
    .news-container {
        padding: 0 16px;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .news-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .news-subtitle {
        font-size: 14px;
    }
    
    .news-item h2 {
        font-size: 20px;
    }
    
    .news-item h3 {
        font-size: 18px;
    }
}
/* === NEW TEAM PAGE STYLES === */
.team-page-new {
    background: #000;
    min-height: 100vh;
    padding-top: 70px;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Elements */
.team-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 26, 26, 0.3);
    border-radius: 50%;
    animation: float var(--duration) var(--delay) infinite linear;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 6px;
    height: 6px;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 3px;
    height: 3px;
    background: rgba(255, 140, 0, 0.4);
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 5px;
    height: 5px;
    background: rgba(0, 255, 127, 0.3);
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    width: 4px;
    height: 4px;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Section */
.team-hero-new {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-parallax-bg {
    position: absolute;
    inset: 0;
    background: url('/images/sscreen.webp') center / cover no-repeat;
    filter: blur(3px) brightness(0.2);
    z-index: 0;
}

.team-hero-content-new {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.team-logo-animation {
    margin-bottom: 30px;
    animation: logoFloat 6s ease-in-out infinite;
}

.animated-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.team-main-title {
    font-family: 'Bender', sans-serif;
    font-size: 64px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}



.team-subtitle-animated {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.subtitle-word {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: wordAppear 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes wordAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.scroll-indicator.clicked .scroll-arrow {
    animation: arrowCollapse 0.6s ease-out forwards;
}

@keyframes arrowCollapse {
    0% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: rotate(45deg) scale(0);
        opacity: 0;
    }
}

/* Team Cards Section */
.team-cards-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
    padding: 100px 0;
}

.team-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: start;
}

/* Team Cards */
.team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(255, 26, 26, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.team-card:hover .card-glow {
    opacity: 1;
}

.founder-glow {
    background: linear-gradient(45deg, transparent, rgba(255, 26, 26, 0.6), transparent);
}

.admin-glow {
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.6), transparent);
}

.builder-glow {
    background: linear-gradient(45deg, transparent, rgba(0, 255, 127, 0.6), transparent);
}

/* Card Header */
.card-header {
    position: relative;
    padding: 30px 30px 20px;
    text-align: center;
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .member-avatar img {
    transform: scale(1.1);
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff1a1a, #cc0000, #ff1a1a);
    z-index: -1;
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.admin-ring {
    background: conic-gradient(from 0deg, #ff8c00, #ff6600, #ff8c00);
}

.builder-ring {
    background: conic-gradient(from 0deg, #00ff7f, #00cc66, #00ff7f);
}

.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00ff00;
    border: 3px solid #000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    z-index: 10;
}

.status-indicator.online {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 1);
    }
}

.member-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 26, 26, 0.3);
}

.rank-icon {
    font-size: 16px;
}

.rank-text {
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    color: #ff1a1a;
    letter-spacing: 1px;
}

.admin-card .member-rank {
    border-color: rgba(255, 140, 0, 0.3);
}

.admin-card .rank-text {
    color: #ff8c00;
}

.builder-card .member-rank {
    border-color: rgba(0, 255, 127, 0.3);
}

.builder-card .rank-text {
    color: #00ff7f;
}

/* Card Body */
.card-body {
    padding: 0 30px 20px;
}

.member-name-new {
    font-family: 'Bender', sans-serif;
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.member-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Bender', sans-serif;
    font-size: 20px;
    color: #ff1a1a;
    margin-bottom: 4px;
}

.admin-card .stat-value {
    color: #ff8c00;
}

.builder-card .stat-value {
    color: #00ff7f;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 26, 26, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 26, 26, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-card .skill {
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.3);
}

.builder-card .skill {
    background: rgba(0, 255, 127, 0.2);
    border-color: rgba(0, 255, 127, 0.3);
}

/* Card Footer */
.card-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

/* Кнопки контактов в команде */
.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.1) 0%, rgba(255, 26, 26, 0.2) 100%);
    border: 1px solid rgba(255, 26, 26, 0.3);
    border-radius: 12px;
    color: #ff1a1a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    box-shadow: 
        0 2px 8px rgba(255, 26, 26, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.2) 0%, rgba(255, 26, 26, 0.3) 100%);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 26, 26, 0.5);
    box-shadow: 
        0 6px 20px rgba(255, 26, 26, 0.3),
        0 0 15px rgba(255, 26, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ff3333;
}

.contact-btn:hover::before {
    left: 100%;
}

.admin-card .contact-btn {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.2) 100%);
    border-color: rgba(255, 140, 0, 0.3);
    color: #ff8c00;
    box-shadow: 
        0 2px 8px rgba(255, 140, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-card .contact-btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
}

.admin-card .contact-btn:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 140, 0, 0.3) 100%);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 
        0 6px 20px rgba(255, 140, 0, 0.3),
        0 0 15px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffaa00;
}

.builder-card .contact-btn {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, rgba(0, 255, 127, 0.2) 100%);
    border-color: rgba(0, 255, 127, 0.3);
    color: #00ff7f;
    box-shadow: 
        0 2px 8px rgba(0, 255, 127, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.builder-card .contact-btn::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 127, 0.1), transparent);
}

.builder-card .contact-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.2) 0%, rgba(0, 255, 127, 0.3) 100%);
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 
        0 6px 20px rgba(0, 255, 127, 0.3),
        0 0 15px rgba(0, 255, 127, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #33ff99;
}

.btn-icon {
    font-size: 14px;
}

.contact-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-style: italic;
}

/* General Contact Section */
.general-contact-section {
    background: #050505;
    padding: 80px 0;
    position: relative;
}

.general-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ff1a1a 50%, transparent 100%);
    opacity: 0.6;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-header h2 {
    font-family: 'Bender', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Карточки контактов */
.contact-card-new {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff1a1a 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-new:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(255, 26, 26, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 26, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-card-new:hover::before {
    left: 100%;
}

.contact-card-new:hover::after {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 26, 26, 0.1);
    border: 2px solid rgba(255, 26, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-new {
    font-size: 24px;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-info h3 {
    font-family: 'Bender', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}

.contact-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #ff1a1a;
    margin-bottom: 4px;
}

.response-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-main-title {
        font-size: 42px;
    }
    
    .subtitle-word {
        font-size: 16px;
    }
    
    .team-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    
    .team-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-card-new {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-hero-new {
        height: 80vh;
    }
    
    .team-main-title {
        font-size: 32px;
    }
    
    .animated-logo {
        width: 80px;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
    }
    
    .card-header,
    .card-body,
    .card-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* Admin Panel Visibility Improvements */
.login-link {
    background: linear-gradient(90deg, rgba(255, 26, 26, 0.1), rgba(255, 26, 26, 0.2));
    border: 1px solid rgba(255, 26, 26, 0.3);
    transition: all 0.3s ease;
}

.login-link:hover {
    background: linear-gradient(90deg, rgba(255, 26, 26, 0.2), rgba(255, 26, 26, 0.3));
    border-color: rgba(255, 26, 26, 0.5);
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.3);
}

/* Admin Success Notification */
.admin-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #66ff66;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* News Empty State */
.news-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 20px 0;
}

.news-empty p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
/* News Image Error Handling */
.news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-image img[alt]:after {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    display: none;
}

.news-image img:not([src]),
.news-image img[src=""],
.news-image img[src*="undefined"] {
    display: none;
}

.news-image img:not([src]):after,
.news-image img[src=""]:after,
.news-image img[src*="undefined"]:after {
    display: block;
}
/* === HELP PAGE STYLES (SUPPORT CENTER STYLE) === */
.help-page {
    background: #000;
    min-height: 100vh;
    padding-top: 70px;
    font-family: 'Montserrat', sans-serif;
}

/* Header Section */
.help-header {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-header-bg {
    position: absolute;
    inset: 0;
    background: url('/images/fscreen.webp') center / cover no-repeat;
    filter: blur(1px) brightness(0.2) contrast(1.1);
    transform: scale(1.05);
    z-index: 0;
}

.help-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(30,10,10,0.8) 100%);
    z-index: 1;
}

.help-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.help-classification {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.help-classification .classification-label {
    color: rgba(255, 255, 255, 0.6);
}

.help-classification .classification-level {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 2px;
}

.help-main-title {
    font-family: 'Bender', sans-serif;
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    line-height: 1.1;
}

.help-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-style: italic;
    text-transform: lowercase;
}

.help-warning {
    background: rgba(255, 26, 26, 0.1);
    border: 2px solid rgba(255, 26, 26, 0.3);
    border-radius: 4px;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.help-warning .warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.help-warning .warning-icon {
    color: #ff1a1a;
    font-size: 18px;
}

.help-warning .warning-label {
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    color: #ff1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-warning .warning-text {
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Section */
.help-navigation {
    background: #0a0a0a;
    padding: 60px 0;
    position: relative;
}

.help-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 26, 26, 0.5) 50%, transparent 100%);
}

.help-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Help Modules Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
}

.help-module {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.help-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.05), transparent);
    transition: left 0.5s ease;
}

.help-module:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 26, 26, 0.4);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 26, 26, 0.2);
}

.help-module:hover::before {
    left: 100%;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.module-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 26, 26, 0.1);
    border: 2px solid rgba(255, 26, 26, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.module-info {
    flex: 1;
}

.module-title {
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-status {
    font-family: 'Bender', sans-serif;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.status-available {
    background: rgba(255, 26, 26, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 26, 26, 0.3);
}

.status-priority {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.status-critical {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
    border: 1px solid rgba(204, 0, 0, 0.3);
}

.status-urgent {
    background: rgba(255, 0, 100, 0.1);
    color: #ff0064;
    border: 1px solid rgba(255, 0, 100, 0.3);
}

.module-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 16px;
}

.module-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 2px solid #ff1a1a;
}

/* FAQ Section (Частые вопросы) */
.quick-help-section {
    background: #050505;
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.quick-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 26, 26, 0.3) 50%, transparent 100%);
}

.quick-help-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-help-title {
    font-family: 'Bender', sans-serif;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.quick-help-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff1a1a, #cc0000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-help-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 26, 26, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.quick-help-card:hover::before {
    opacity: 1;
}

.quick-help-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.quick-help-card h3 {
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-help-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.quick-help-code {
    font-family: 'Bender', sans-serif;
    font-size: 11px;
    color: #ff1a1a;
    background: rgba(255, 26, 26, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 26, 26, 0.3);
    display: inline-block;
}

/* Contact Support Section */
.contact-support-section {
    background: #000;
    padding: 80px 0;
}

.contact-support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-support-header h2 {
    font-family: 'Bender', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-support-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.support-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.1), transparent);
    transition: left 0.6s ease;
}

.support-contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 26, 26, 0.4);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.support-contact-card:hover::before {
    left: 100%;
}

.support-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 26, 26, 0.1);
    border: 2px solid rgba(255, 26, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon {
    font-size: 24px;
}

.support-info {
    flex: 1;
    text-align: left;
}

.support-info h3 {
    font-family: 'Bender', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}

.support-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #ff1a1a;
    margin-bottom: 4px;
}

.support-info .response-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-main-title {
        font-size: 36px;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-help-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-support-grid {
        grid-template-columns: 1fr;
    }
    
    .support-contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .support-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .help-header {
        height: 50vh;
        min-height: 400px;
    }
    
    .help-main-title {
        font-size: 28px;
    }
    
    .help-module {
        padding: 20px;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
.guides-page {
    background: #000;
    min-height: 100vh;
    padding-top: 70px;
    font-family: 'Montserrat', sans-serif;
}

/* Header Section */
.guides-header {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guides-header-bg {
    position: absolute;
    inset: 0;
    background: url('/images/sscreen.webp') center / cover no-repeat;
    filter: blur(1px) brightness(0.15) contrast(1.2);
    transform: scale(1.05);
    z-index: 0;
}

.guides-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.8) 100%);
    z-index: 1;
}

.guides-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.guides-classification {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.classification-label {
    color: rgba(255, 255, 255, 0.6);
}

.classification-level {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 2px;
}

.guides-main-title {
    font-family: 'Bender', sans-serif;
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    line-height: 1.1;
}

.guides-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-style: italic;
    text-transform: lowercase;
}

.guides-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.warning-icon {
    color: #ff0000;
    font-size: 18px;
}

.warning-label {
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-text {
    font-family: 'Bender', sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Section */
.guides-navigation {
    background: #0a0a0a;
    padding: 60px 0;
    position: relative;
}

.guides-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.5) 50%, transparent 100%);
}

.guides-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guides-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-title {
    font-family: 'Bender', sans-serif;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
    animation: statusPulse 2s infinite;
}

.status-text {
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guide Modules Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.guide-module {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.guide-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.guide-module:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.guide-module:hover::before {
    opacity: 1;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.module-id {
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-status {
    padding: 4px 8px;
    border-radius: 2px;
    font-family: 'Bender', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.module-status.danger {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.module-status.warning {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.module-status.info {
    background: rgba(0, 150, 255, 0.2);
    color: #0096ff;
    border: 1px solid rgba(0, 150, 255, 0.4);
}

.module-title {
    font-family: 'Bender', sans-serif;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}

.module-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.module-stats {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    font-family: 'Bender', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guide Detail Section */
.guide-detail {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 40px 0;
}

.guide-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 2px;
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.guide-classification {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-id {
    font-family: 'Bender', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guide-level {
    padding: 6px 12px;
    border-radius: 2px;
    font-family: 'Bender', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.guide-level.критический {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.guide-level.важный {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.guide-level.стандартный {
    background: rgba(0, 150, 255, 0.2);
    color: #0096ff;
    border: 1px solid rgba(0, 150, 255, 0.4);
}

.guide-content-title {
    font-family: 'Bender', sans-serif;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 40px 0;
    text-align: center;
}

/* Info Blocks */
.guide-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.info-block.critical {
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.05);
}

.info-block.warning {
    border-color: rgba(255, 165, 0, 0.3);
    background: rgba(255, 165, 0, 0.05);
}

.block-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-icon {
    color: #ff0000;
    font-size: 16px;
}

.block-title {
    font-family: 'Bender', sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-content {
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    white-space: pre-line;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guides-main-title {
        font-size: 32px;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .guides-nav-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .guide-detail-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .guide-classification {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .guides-main-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .guides-header {
        height: 50vh;
        min-height: 400px;
    }
    
    .module-stats {
        flex-direction: column;
        gap: 8px;
    }
}