<style>
        /* ===== BASE & RESET ===== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            font-size: 16px;
        }
        body {
			background:linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(5, 5, 5, 0.45)),url('bg.jpg') center/cover no-repeat fixed;
            background-blend-mode: multiply;
            color: #e0e0e0;
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        ul {
            list-style: none;
        }
        :focus-visible {
            outline: 2px solid #ff6a00;
            outline-offset: 2px;
        }
        
        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }
        h1 {
            font-size: clamp(1rem, 2vw, 1.5rem);
            
        }
        h2 {
            font-size: clamp(1.3rem, 3vw, 2.2rem);
            margin-bottom: 2rem;
            text-shadow: 
                0 0 3px #ff4500,
                0 0 6px #ff4500,
                0 0 12px #ff6a00,
                0 0 24px #ff7b00;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff4500, #ff6a00, #ff4500, transparent);
            box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00;
            border-radius: 2px;
        }
        h3 {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            text-shadow: 
                0 0 2px #ff4500,
                0 0 4px #ff4500,
                0 0 8px #ff6a00,
                0 0 16px #ff7b00;
        }
        p {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
		strong {
		color: #ff6a00;
		}
        
        /* ===== NEON UTILITIES ===== */
        .neon-text {
            text-shadow: 
                0 0 5px #ff4500,
                0 0 10px #ff4500,
                0 0 20px #ff6a00,
                0 0 40px #ff7b00;
        }
        .neon-border {
            border: 2px solid #ff4500;
            box-shadow: 
                0 0 5px #ff4500,
                0 0 10px #ff6a00,
                inset 0 0 5px #ff4500,
                inset 0 0 10px #ff6a00;
        }
        .neon-glow {
            box-shadow: 
                0 0 10px #ff4500,
                0 0 20px #ff6a00,
                0 0 40px #ff7b00;
        }
        @keyframes pulseGlow {
            0%, 100% { text-shadow: 0 0 5px #ff4500, 0 0 10px #ff4500, 0 0 20px #ff6a00, 0 0 40px #ff7b00; }
            50% { text-shadow: 0 0 10px #ff4500, 0 0 20px #ff4500, 0 0 40px #ff6a00, 0 0 80px #ff7b00; }
        }
        @keyframes radialGlow {
            0%, 100% { box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00, 0 0 40px #ff7b00; }
            50% { box-shadow: 0 0 20px #ff4500, 0 0 40px #ff6a00, 0 0 80px #ff7b00; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes flipCard {
            0% { transform: rotateX(0); }
            50% { transform: rotateX(-90deg); }
            100% { transform: rotateX(0); }
        }
        @keyframes socialPulse {
            0%, 100% { box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00; }
            50% { box-shadow: 0 0 20px #ff4500, 0 0 40px #ff6a00, 0 0 60px #ff7b00; }
        }
        
        /* ===== STICKY NAVIGATION ===== */
        .sticky-nav {
            position: fixed;
			background:linear-gradient(0deg, rgba(10, 10, 10, 0.92), rgba(5, 5, 5, 0.45)),url('menu.jpg');
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 2rem;
            border-bottom: 1px solid rgba(255, 69, 0, 0.3);
            box-shadow: 0 2px 20px rgba(255, 69, 0, 0.2);
            transition: all 0.3s ease;
        }
        .nav-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            cursor: pointer;
            letter-spacing: 2px;
        }
        .nav-logo:hover {
            text-shadow: 0 0 15px #ff4500, 0 0 30px #ff6a00, 0 0 45px #ff7b00;
        }
        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-links a {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff4500, #ff6a00);
            transition: width 0.3s ease;
            box-shadow: 0 0 5px #ff4500;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #ff6a00;
            text-shadow: 0 0 8px #ff4500, 0 0 16px #ff6a00;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }
        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: #ff4500;
            border-radius: 2px;
            transition: all 0.3s ease;
            box-shadow: 0 0 5px #ff4500;
        }
        .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        
        /* Mobile Menu Panel */
        .mobile-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(15, 15, 15, 0.98);
            backdrop-filter: blur(12px);
            border-left: 2px solid #ff4500;
            box-shadow: -5px 0 30px rgba(255, 69, 0, 0.4);
            padding: 5rem 2rem 2rem;
            transition: right 0.4s ease;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mobile-panel.active { right: 0; }
        .mobile-panel a {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 69, 0, 0.2);
            transition: all 0.3s ease;
        }
        .mobile-panel a:hover,
        .mobile-panel a.active {
            color: #ff6a00;
            padding-left: 10px;
            text-shadow: 0 0 8px #ff4500, 0 0 16px #ff6a00;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        .overlay.active { opacity: 1; visibility: visible; }
        
        /* ===== BANNER ===== */
        .banner {
            width: 100%;
            height: 600px;
            background: url('banner.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 60px;
        }
        .banner-title {
            text-align: center;
            padding: 1rem 2rem;
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid #ff4500;
        }
        
        /* ===== SECTIONS BASE ===== */
        section {
		    background: linear-gradient(90deg, rgb(0 0 0 / 40%), rgb(0 0 0 / 40%));
            padding: 2rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        section:nth-child(even) {
            
        }
        
        /* ===== GALLERY SLIDESHOW ===== */
        #gallery { text-align: center; }
        .slideshow-container {
            position: relative;
            max-width: 1000px;
            height: 500px;
            margin: 0 auto 2rem;
            overflow: hidden;
            border-radius: 12px;
            border: 2px solid #ff4500;
            box-shadow: 
                0 0 15px #ff4500,
                0 0 30px #ff6a00,
                inset 0 0 15px rgba(255, 69, 0, 0.2);
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
            animation: fadeIn 1s ease forwards;
        }
        .slide.active { opacity: 1; z-index: 2; }
        .slide:nth-child(1) { background-image: url('1.jpg'); }
        .slide:nth-child(2) { background-image: url('2.jpg'); }
        .slide:nth-child(3) { background-image: url('3.jpg'); }
        .slide:nth-child(4) { background-image: url('4.jpg'); }
        .slide:nth-child(5) { background-image: url('5.jpg'); }
        .slide img {
            position: absolute;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }
        .dots-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 1.5rem;
        }
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 69, 0, 0.3);
            border: 2px solid #ff4500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
        }
        .dot.active,
        .dot:hover {
            background: #ff4500;
            box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00;
            transform: scale(1.2);
        }
        
        /* ===== CONNECT BLOCK ===== */
        #connect { text-align: center; }
        .connect-card {
            max-width: 700px;
            margin: 0 auto;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(30, 15, 10, 0.9), rgba(20, 10, 5, 0.95));
            border-radius: 16px;
            border: 2px solid #ff4500;
            box-shadow: 
                0 0 20px #ff4500,
                0 0 40px #ff6a00,
                inset 0 0 20px rgba(255, 106, 0, 0.2);
            animation: radialGlow 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }
        .connect-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
            animation: radialGlow 4s ease-in-out infinite;
            pointer-events: none;
        }
        .steps-list {
            text-align: left;
            margin: 2rem 0;
            counter-reset: step;
        }
        .steps-list li {
            position: relative;
            padding-left: 3.5rem;
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .steps-list li::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff4500, #ff6a00);
            color: #0a0a0a;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ff7b00;
            box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00;
        }
        .connect-command {
            display: inline-block;
            margin: 1.5rem 0;
            padding: 1rem 2rem;
            font-family: 'Courier New', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ff6a00;
            background: rgba(10, 10, 10, 0.9);
            border: 2px solid #ff4500;
            border-radius: 8px;
            box-shadow: 
                0 0 10px #ff4500,
                0 0 20px #ff6a00,
                inset 0 0 10px rgba(255, 69, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: all;
        }
        .connect-command:hover {
            background: rgba(30, 20, 15, 0.95);
            box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6a00, 0 0 45px #ff7b00;
            transform: translateY(-2px);
        }
        .connect-note {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 1rem;
            font-style: italic;
        }
        
        /* ===== ABOUT SECTION ===== */
        #about { text-align: center; }
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: left;
        }
        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .features-list {
            margin-top: 1.5rem;
        }
        .features-list li {
            position: relative;
            padding-left: 1.8rem;
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }
        .features-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #ff4500;
            font-weight: bold;
            font-size: 1.3rem;
            text-shadow: 0 0 5px #ff4500, 0 0 10px #ff6a00;
        }
        
        /* ===== COUNTDOWN SECTION ===== */
        #countdown { text-align: center; }
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
        .flip-card {
            width: 100px;
            height: 120px;
            background: linear-gradient(145deg, rgba(25, 15, 10, 0.95), rgba(15, 8, 5, 0.98));
            border: 2px solid #ff4500;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 0 15px #ff4500,
                0 0 30px #ff6a00,
                inset 0 0 10px rgba(255, 69, 0, 0.3);
            perspective: 1000px;
        }
        .flip-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 0 8px #ff4500, 0 0 16px #ff6a00;
            margin-bottom: 0.3rem;
            transition: transform 0.4s ease;
            transform-style: preserve-3d;
        }
        .flip-card.flipping .flip-number {
            animation: flipCard 0.4s ease;
        }
        .flip-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ccc;
        }
        .wipe-date {
            margin-top: 2rem;
            font-size: 1.1rem;
            color: #ff6a00;
            text-shadow: 0 0 5px #ff4500;
        }
        
        /* ===== RULES SECTION ===== */
        #rules { 
		text-align: center; 
		font-size: 1.1rem;
		}
        .rules-list {
            max-width: 1000px;
            margin: 0 auto;
            text-align: left;
        }
        .rules-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 69, 0, 0.2);
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .rules-list li::before {
            content: '✗';
            color: #ff4500;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
            text-shadow: 0 0 5px #ff4500;
        }
        .rules-note {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(30, 15, 10, 0.6);
            border-left: 3px solid #ff4500;
            border-radius: 0 8px 8px 0;
            font-size: 1.2rem;
            color: #ccc;
        }
        
        /* ===== SHOP SECTION ===== */
        #shop { text-align: center; }
        .shop-grid {
            display: grid;
            grid-template-columns: repeat(3, 33%);
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .shop-card {
            background: linear-gradient(145deg, rgba(25, 15, 10, 0.9), rgba(15, 8, 5, 0.95));
            border: 2px solid #ff4500;
            border-radius: 12px;
            padding: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .shop-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 0 20px #ff4500, 0 0 40px #ff6a00, 0 0 60px #ff7b00;
            border-color: #ff6a00;
        }
        .shop-img {
            width: 100%;
            aspect-ratio: 16 / 11;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 69, 0, 0.4);
        }
        .shop-img--1 { background-image: url('s1.jpg'); }
        .shop-img--2 { background-image: url('s2.jpg'); }
        .shop-img--3 { background-image: url('s3.jpg'); }
        .shop-card h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .shop-card p {
            font-size: 0.85rem;
            color: #bbb;
            margin-bottom: 0.8rem;
            flex-grow: 1;
        }
        .shop-price {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            color: #ff6a00;
            margin-bottom: 0.8rem;
            text-shadow: 0 0 5px #ff4500;
        }
        .shop-btn {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: linear-gradient(135deg, #ff4500, #ff6a00);
            color: #ffffff;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00;
        }
        .shop-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6a00, 0 0 45px #ff7b00;
        }
        
        /* ===== SUPPORT SECTION ===== */
        #support { text-align: center; }
        .support-email {
            display: inline-block;
            margin: 1rem 0;
            padding: 0.8rem 1.5rem;
            font-size: 1.1rem;
            color: #ff6a00;
            background: rgba(30, 15, 10, 0.7);
            border: 2px solid #ff4500;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-shadow: 0 0 5px #ff4500;
        }
        .support-email:hover {
            background: rgba(40, 20, 12, 0.9);
            box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6a00;
            transform: scale(1.02);
        }
        
        /* ===== SOCIAL SECTION ===== */
        #social { text-align: center; }
        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, rgba(30, 15, 10, 0.9), rgba(20, 10, 5, 0.95));
            border: 2px solid #ff4500;
            border-radius: 10px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ff6a00;
            transition: all 0.3s ease;
            animation: socialPulse 2.5s ease-in-out infinite;
            box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6a00;
        }
        .social-btn:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 0 25px #ff4500, 0 0 50px #ff6a00, 0 0 75px #ff7b00;
            border-color: #ff6a00;
        }
        .social-btn.vk { background: linear-gradient(135deg, rgba(20, 30, 50, 0.9), rgba(10, 15, 30, 0.95)); }
        .social-btn.rutube { background: linear-gradient(135deg, rgba(50, 15, 20, 0.9), rgba(30, 10, 12, 0.95)); }
        
        /* ===== FOOTER ===== */
        footer {
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), #050505);
            padding: 3rem 2rem 5rem;
            text-align: center;
            border-top: 1px solid rgba(255, 69, 0, 0.3);
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .footer-nav a {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #aaa;
            transition: all 0.3s ease;
        }
        .footer-nav a:hover {
            color: #ff6a00;
            text-shadow: 0 0 8px #ff4500;
        }
        .copyright {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 0.5rem;
        }
        .disclaimer {
            font-size: 0.75rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ===== BACK TO TOP BUTTON ===== */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff4500, #ff6a00);
            color: #0a0a0a;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            border: 2px solid #ff7b00;
            box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6a00;
            z-index: 999;
            animation: pulseGlow 2s ease-in-out infinite;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 0 25px #ff4500, 0 0 50px #ff6a00, 0 0 75px #ff7b00;
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .shop-grid { grid-template-columns: repeat(3, 30%); }
        }
        @media (max-width: 950px) {
            .nav-links { display: none; }
            .nav-toggle { display: flex; }
            .banner { height: 500px; }
            .banner-title { font-size: 1.8rem; padding: 0.8rem 1.5rem; }
            .slideshow-container { height: 400px; }
            .flip-card { width: 80px; height: 100px; }
            .flip-number { font-size: 2rem; }
            .shop-grid { grid-template-columns: repeat(2, 45%); }
        }
        @media (max-width: 600px) {
            html { font-size: 14px; }
            .sticky-nav { padding: 0.6rem 1.5rem; }
            .banner { height: 400px; margin-top: 70px; }
            .banner-title { font-size: 1.4rem; }
            section { padding: 3rem 1.5rem; }
            .slideshow-container { height: 300px; }
            .connect-card { padding: 1.8rem; }
            .steps-list li { font-size: 1rem; padding-left: 3rem; }
            .steps-list li::before { width: 28px; height: 28px; font-size: 0.8rem; }
            .countdown-container { gap: 0.8rem; }
            .flip-card { width: 70px; height: 90px; }
            .flip-number { font-size: 1.7rem; }
            .flip-label { font-size: 0.65rem; }
            .shop-grid { grid-template-columns: 1fr; }
            .social-buttons { gap: 1rem; }
            .social-btn { padding: 0.8rem 2rem; font-size: 0.9rem; }
            .back-to-top { width: 45px; height: 45px; bottom: 1.5rem; right: 1.5rem; }
        }
        @media (max-width: 400px) {
            .banner { height: 350px; }
            .banner-title { font-size: 1.2rem; }
            .slideshow-container { height: 250px; }
            .flip-card { width: 60px; height: 80px; }
            .flip-number { font-size: 1.4rem; }
            .connect-command { font-size: 1rem; padding: 0.8rem 1.5rem; }
        }
        
        /* ===== ACCESSIBILITY & PRINT ===== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        @media print {
            .sticky-nav, .back-to-top, .mobile-panel, .overlay { display: none !important; }
            body { background: #fff; color: #000; }
            section { page-break-inside: avoid; }
        }
		
		
		
/* ===== WRAPPER ДЛЯ ГРУППЫ СЕРВЕРОВ ===== */
.servers-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Отступ между плашками */
  max-width: 950px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* ===== SERVER BAR COMPONENT ===== */
.server-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, rgba(25, 15, 10, 0.95), rgba(15, 8, 5, 0.98));
  border: 2px solid #ff4500;
  border-radius: 12px;
  box-shadow: 
    0 0 15px #ff4500, 
    0 0 30px #ff6a00, 
    inset 0 0 10px rgba(255, 69, 0, 0.2);
  font-family: 'Orbitron', sans-serif;
  color: #e0e0e0;
  flex-wrap: nowrap;
  overflow-x: auto;
  user-select: none;
  transition: all 0.3s ease;
}

.server-bar:hover {
  border-color: #ff6a00;
  box-shadow: 
    0 0 20px #ff4500, 
    0 0 40px #ff6a00, 
    inset 0 0 15px rgba(255, 106, 0, 0.3);
}

.sb-logo {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 1px solid rgba(255, 69, 0, 0.4);
  object-fit: cover;
  flex-shrink: 0;
}

.sb-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ff6a00;
  text-shadow: 0 0 5px #ff4500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Группа: адрес + кнопка копирования */
.sb-address-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.sb-address {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #aaa;
  white-space: nowrap;
  cursor: pointer;
}

.sb-address:hover {
  color: #ff6a00;
  text-shadow: 0 0 5px #ff4500;
}

.sb-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid #ff4500;
  border-radius: 6px;
  cursor: pointer;
  color: #ff6a00;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
}

.sb-copy svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.sb-copy:hover {
  box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00;
  transform: translateY(-2px);
  border-color: #ff6a00;
}

.sb-online {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 5px #ff6a00;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Ссылка-кнопка ПОДКЛЮЧИТЬСЯ */
.sb-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, #ff4500, #ff6a00);
  color: #0a0a0a;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #ff4500, 0 0 20px #ff6a00;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.sb-connect:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6a00, 0 0 45px #ff7b00;
  color: #000;
}

.sb-connect:active {
  transform: scale(0.98);
}

/* ===== АДАПТИВ: ВЕРТИКАЛЬНЫЙ РЕЖИМ (< 950px) ===== */
@media (max-width: 950px) {
  .servers-wrapper {
    gap: 1.2rem;
    padding: 0.5rem 0;
  }
  
  .server-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.9rem;
    padding: 1.2rem 1rem;
    flex-wrap: wrap;
    overflow-x: visible;
  }
  
  .sb-logo { margin: 0 auto; }
  
  .sb-name {
    font-size: 1.1rem;
    order: 2;
  }
  
  .sb-address-group {
    order: 3;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .sb-address { font-size: 1rem; }
  
  .sb-online {
    order: 4;
    font-size: 1.2rem;
    margin: 0.3rem 0;
  }
  
  .sb-connect {
    order: 5;
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    margin-top: 0.3rem;
  }
  
  .sb-logo { order: 1; }
}

/* Очень узкие экраны (< 400px) */
@media (max-width: 400px) {
  .server-bar {
    padding: 1rem 0.8rem;
    gap: 0.7rem;
  }
  .sb-name { font-size: 1rem; }
  .sb-address { font-size: 0.9rem; }
  .sb-online { font-size: 1.1rem; }
  .sb-connect { 
    padding: 0.7rem 1rem; 
    font-size: 0.85rem;
    max-width: 240px;
  }
  .sb-copy { width: 32px; height: 32px; }
  .sb-copy svg { width: 15px; height: 15px; }
}		
		
    </style>