        :root {
            --bg-color: #030303;
            --surface-color: rgba(20, 20, 20, 0.6);
            --text-main: #ffffff;
            --text-muted: #888888;
            --border-color: rgba(255, 255, 255, 0.1);
            --glow-color: rgba(255, 255, 255, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            /* Точечный фон для техно-стиля */
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        a {
            text-decoration: none;
            color: var(--text-main);
            transition: all 0.3s ease;
        }

        /* Анимации появления */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-fade-up {
            animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }

        header {
            background-color: rgba(3, 3, 3, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .btn-contacts {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 10px 0;
        }

        .btn-contacts:hover {
            color: #fff;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 5px;
            background-color: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            padding: 6px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .dropdown:hover .dropdown-menu,
        .dropdown:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            padding: 10px 16px;
            color: #ccc;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
        }

        .dropdown-menu a:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            width: 26px;
            height: 26px;
            object-fit: contain;
        }

        .logo span {
            color: var(--text-muted);
            font-weight: 300;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 400;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: #fff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-login {
            border: 1px solid var(--border-color);
            padding: 8px 18px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            background: transparent;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-login i {
            width: 16px; height: 16px;
        }

        .btn-login:hover {
            background-color: #fff;
            color: #000;
            box-shadow: 0 0 20px var(--glow-color);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 20px 20px;
            position: relative;
            width: 100%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            z-index: -1;
            filter: blur(50px);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            font-size: 13px;
            color: #ccc;
            margin-bottom: 25px;
            background: rgba(255,255,255,0.03);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .badge i { width: 14px; height: 14px; color: #fff; }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.1;
            background: linear-gradient(180deg, #FFFFFF 0%, #777777 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            max-width: 900px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 45px;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .btn-primary, .btn-secondary {
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: #fff;
            color: #000;
            box-shadow: 0 0 20px rgba(255,255,255,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(255,255,255,0.4);
        }

        .btn-secondary {
            background-color: var(--surface-color);
            backdrop-filter: blur(10px);
            color: #fff;
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            border-color: #fff;
            background-color: rgba(255,255,255,0.05);
        }

        .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
            padding: 12px 28px;
            font-size: 1rem;
            border-radius: 50px;
        }

        .btn-primary i, .btn-secondary i {
            width: 18px; height: 18px;
        }

        .features-section {
            padding-top: 60px;
        }

        .features {
            max-width: 1200px;
            margin: 40px auto 100px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .feature-card {
            background-color: var(--surface-color);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: left;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            transform: translateX(-100%);
            transition: 0.5s ease;
        }

        .feature-card:hover::before {
            transform: translateX(100%);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--glow-color);
        }

        .feature-icon {
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px; height: 60px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            color: #fff;
        }

        .feature-icon i {
            width: 28px; height: 28px;
        }

        .feature-card h3 {
            margin-bottom: 12px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-muted);
            font-weight: 300;
            font-size: 0.95rem;
        }

        .reviews-section {
            padding: 80px 20px;
            position: relative;
        }

        .reviews-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background-color: var(--surface-color);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .review-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 20px var(--glow-color);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #333, #111);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            border: 1px solid var(--border-color);
        }

        .review-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .review-stars {
            display: flex;
            gap: 4px;
            color: #FFD700;
        }

        .review-stars svg {
            width: 14px;
            height: 14px;
            fill: #FFD700;
            stroke: #FFD700;
        }

        .review-text {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.6;
        }

        /* Тарифы Minecraft */
        .pricing-section {
            padding: 100px 20px;
            position: relative;
        }
        
        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 60px;
            font-weight: 300;
            font-size: 1.1rem;
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .plan-card {
            background-color: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
        }

        .plan-card:hover {
            border-color: #fff;
            transform: scale(1.02);
            box-shadow: 0 0 30px rgba(255,255,255,0.05);
        }

        .plan-card.popular {
            border-color: rgba(255,255,255,0.4);
        }

        .plan-card.popular::before {
            content: 'Популярно';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            color: #000;
            font-size: 12px;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 15px 0 25px;
            color: #fff;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        .plan-specs {
            list-style: none;
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .plan-specs li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .plan-specs li:last-child {
            border-bottom: none;
        }

        .spec-label {
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .spec-label i {
            width: 18px;
            height: 18px;
            color: #888;
        }

        .plan-card:hover .spec-label i {
            color: #fff;
        }

        .spec-value {
            font-weight: 600;
            color: #fff;
        }

        .plan-card .btn-primary, .plan-card .btn-secondary {
            width: 100%;
            padding: 14px;
            font-size: 1rem;
            margin-top: auto;
            border-radius: 6px;
        }

        footer {
            padding: 50px 20px 30px;
            border-top: 1px solid var(--border-color);
            background: rgba(5, 5, 5, 0.4);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 25px;
        }

        .footer-brand { 
            font-size: 1.5rem; 
            font-weight: 800; 
            letter-spacing: 1px; 
            color: #fff; 
        }

        .footer-nav { 
            display: flex; 
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 30px; 
        }
        
        .footer-nav a { 
            color: var(--text-muted); 
            font-size: 0.95rem; 
        }
        
        .footer-nav a:hover { 
            color: #fff; 
        }

        .footer-socials { 
            display: flex; 
            gap: 15px; 
            margin-top: 5px;
        }
        
        .footer-socials a { 
            display: flex; 
            align-items: center; 
            justify-content: center;
            width: 46px;
            height: 46px;
            color: var(--text-muted); 
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .footer-socials a:hover { 
            background: #fff; 
            color: #000; 
            border-color: #fff; 
            transform: translateY(-3px);
        }
        
        .footer-socials a svg { 
            width: 24px; 
            height: 24px; 
            fill: currentColor;
        }

        .footer-copyright {
            margin-top: 10px;
            color: #555;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .hero-buttons { flex-direction: column; }
            .feature-card { text-align: center; }
            .feature-icon { margin: 0 auto 20px; display: flex; }
        }

        .top-bar {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 8px 20px;
            font-size: 0.85rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
        }

        .top-bar a {
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
        }

        .top-bar a:hover {
            color: #ccc;
        }

        .top-bar i {
            width: 14px; height: 14px;
        }