      /* ===== ОСНОВНИ СТИЛОВЕ ===== */
        :root {
            --bg: #0a0a0a;
            --card: #111;
            --text: #f0f0f0;
            --muted: #888;
            --accent: #ff2200;
            --accent2: #ff5500;
            --accent3: #ff9900;
            --line: #222;
            --metal: linear-gradient(135deg, #111, #333, #111);
            --shadow: 0 10px 40px rgba(255, 34, 0, 0.3);
            --shadow-hover: 0 20px 50px rgba(255, 34, 0, 0.5);
            --glow: 0 0 30px rgba(255, 34, 0, 0.7);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            font-family: 'Orbitron', 'Roboto Mono', 'Montserrat', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ===== HERO СЕКЦИЯ ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 20px 50px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 34, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 85, 0, 0.1) 0%, transparent 50%),
                var(--bg);
            z-index: -2;
        }
        
        .hero-sparks {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .spark {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            animation: sparkFall linear forwards;
            box-shadow: 0 0 10px var(--accent);
        }
        
        @keyframes sparkFall {
            0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
        }
        
        .hero-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(50px, 10vw, 100px);
            font-weight: 900;
            color: var(--accent);
            text-shadow: 
                0 0 30px rgba(255, 34, 0, 0.8),
                0 0 60px rgba(255, 34, 0, 0.5);
            line-height: 1;
            margin-bottom: 30px;
            letter-spacing: 5px;
            text-transform: uppercase;
        }
        
        .hero-subtitle {
            font-size: clamp(20px, 4vw, 28px);
            color: var(--text);
            max-width: 800px;
            margin-bottom: 50px;
            font-family: 'Roboto Mono', monospace;
        }
        
        .hero-subtitle strong {
            color: var(--accent);
            font-weight: 700;
        }
        
        /* ===== СОЦИАЛНИ ИКОНИ С КАПАН ===== */
        .social-trap-section {
            padding: 100px 0;
            background: rgba(17, 17, 17, 0.5);
            border-top: 1px solid rgba(255, 34, 0, 0.2);
            border-bottom: 1px solid rgba(255, 34, 0, 0.2);
        }
        
        .section-title {
            text-align: center;
            font-family: 'Orbitron', monospace;
            font-size: 42px;
            color: var(--accent);
            margin-bottom: 70px;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), transparent);
            margin: 20px auto 0;
        }
        
        .social-trap-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(34, 34, 34, 0.8);
            border: 2px solid rgba(255, 34, 0, 0.3);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .trap-description {
            text-align: center;
            font-size: 20px;
            color: var(--muted);
            margin-bottom: 50px;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.8;
            font-style: italic;
        }
        
        /* ===== СОЦИАЛНИ ИКОНИ ===== */
        .social-icons-trap {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        
        .social-icon-trap {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--text);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            border: 2px solid rgba(255, 34, 0, 0.3);
            background: rgba(17, 17, 17, 0.8);
            overflow: hidden;
        }
        
        /* Facebook специфични стилове */
        .social-icon-trap.facebook {
            color: #1877F2;
            border-color: rgba(24, 119, 242, 0.3);
            background: rgba(24, 119, 242, 0.1);
        }
        
        /* Instagram специфични стилове */
        .social-icon-trap.instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            border-color: rgba(220, 39, 67, 0.3);
        }
        
        .social-icon-trap:hover {
            transform: translateY(-15px) scale(1.15);
            box-shadow: 
                0 20px 40px rgba(255, 34, 0, 0.3),
                0 0 60px rgba(255, 34, 0, 0.2);
        }
        
        .social-icon-trap.facebook:hover {
            box-shadow: 
                0 20px 40px rgba(24, 119, 242, 0.3),
                0 0 60px rgba(24, 119, 242, 0.2);
            border-color: #1877F2;
        }
        
        .social-icon-trap.instagram:hover {
            box-shadow: 
                0 20px 40px rgba(220, 39, 67, 0.3),
                0 0 60px rgba(188, 24, 136, 0.2);
            border-color: #dc2743;
        }
        
        .social-icon-trap::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.7s ease;
        }
        
        .social-icon-trap:hover::before {
            left: 100%;
        }
        
        .icon-label {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Roboto Mono', monospace;
            font-size: 14px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .social-icon-trap:hover .icon-label {
            opacity: 1;
        }
        
        .trap-warning {
            text-align: center;
            color: var(--accent);
            font-family: 'Roboto Mono', monospace;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 30px;
            padding: 15px;
            background: rgba(255, 34, 0, 0.1);
            border: 1px solid rgba(255, 34, 0, 0.3);
            border-radius: 5px;
        }
        
        /* ===== МОДАЛЕН ПРОЗОРЕЦ ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-container {
            max-width: 700px;
            width: 100%;
            background: rgba(17, 17, 17, 0.98);
            border: 3px solid var(--accent);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            animation: modalAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 0 80px rgba(255, 34, 0, 0.3),
                0 0 160px rgba(255, 34, 0, 0.1);
        }
        
        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .modal-header {
            background: linear-gradient(90deg, rgba(255, 34, 0, 0.2), rgba(255, 85, 0, 0.1));
            padding: 25px 30px;
            border-bottom: 2px solid rgba(255, 34, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-title {
            font-family: 'Orbitron', monospace;
            font-size: 28px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .modal-close {
            background: none;
            border: none;
            color: var(--accent);
            font-size: 30px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background: rgba(255, 34, 0, 0.2);
            transform: rotate(90deg);
        }
        
        .modal-content {
            padding: 40px;
            max-height: 70vh;
            overflow-y: auto;
        }
        
        .modal-platform {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 34, 0, 0.2);
        }
        
        .platform-icon {
            font-size: 40px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .platform-icon.facebook {
            background: rgba(24, 119, 242, 0.1);
            color: #1877F2;
            border: 2px solid rgba(24, 119, 242, 0.3);
        }
        
        .platform-icon.instagram {
            background: rgba(220, 39, 67, 0.1);
            color: #dc2743;
            border: 2px solid rgba(220, 39, 67, 0.3);
        }
        
        .platform-name {
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .modal-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 30px;
        }
        
        .modal-text strong {
            color: var(--accent);
            font-weight: 700;
        }
        
        .philosophy-section {
            background: rgba(255, 34, 0, 0.05);
            border-left: 4px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .philosophy-title {
            font-family: 'Orbitron', monospace;
            font-size: 20px;
            color: var(--accent);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .philosophy-text {
            font-family: 'Roboto Mono', monospace;
            font-size: 16px;
            line-height: 1.7;
            color: var(--muted);
            font-style: italic;
        }
        
        .modal-quote {
            text-align: center;
            font-size: 22px;
            color: var(--accent);
            font-family: 'Orbitron', monospace;
            margin: 40px 0;
            padding: 30px;
            border-top: 2px solid rgba(255, 34, 0, 0.2);
            border-bottom: 2px solid rgba(255, 34, 0, 0.2);
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .modal-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .modal-btn {
            padding: 15px 30px;
            font-family: 'Orbitron', monospace;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .modal-btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #000;
        }
        
        .modal-btn-secondary {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }
        
        .modal-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 34, 0, 0.3);
        }
        
        /* ===== РЕАЛНА АЛТЕРНАТИВА ===== */
        .real-contact-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-card {
            background: rgba(34, 34, 34, 0.8);
            border: 2px solid rgba(255, 34, 0, 0.2);
            padding: 40px;
            border-radius: 10px;
            transition: all 0.4s ease;
        }
        
        .contact-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .contact-icon {
            font-size: 50px;
            color: var(--accent);
            margin-bottom: 25px;
            text-shadow: 0 0 20px rgba(255, 34, 0, 0.5);
        }
        
        .contact-title {
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            color: var(--text);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .contact-info {
            font-family: 'Roboto Mono', monospace;
            font-size: 20px;
            color: var(--accent);
            margin: 15px 0;
            font-weight: 700;
        }
        
        .contact-description {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.6;
            margin-top: 15px;
        }
        
        /* ===== ФУТЪР ===== */
        .footer {
            padding: 60px 0 40px;
            background: rgba(0, 0, 0, 0.8);
            border-top: 3px solid var(--accent);
            text-align: center;
            margin-top: 100px;
        }
        
        .footer-logo {
            font-family: 'Orbitron', monospace;
            font-size: 36px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 900;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 30px;
            display: inline-block;
            text-shadow: 0 0 20px rgba(255, 34, 0, 0.5);
        }
        
        .footer-quote {
            font-family: 'Roboto Mono', monospace;
            font-size: 18px;
            color: var(--muted);
            max-width: 800px;
            margin: 30px auto;
            font-style: italic;
            line-height: 1.8;
            padding: 20px;
            border-top: 1px solid rgba(255, 34, 0, 0.1);
            border-bottom: 1px solid rgba(255, 34, 0, 0.1);
        }
        
        .copyright {
            font-family: 'Roboto Mono', monospace;
            font-size: 14px;
            color: var(--muted);
            margin-top: 40px;
            opacity: 0.7;
        }
        
        /* ===== МОБИЛНА ВЕРСИЯ ===== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 40px;
                letter-spacing: 3px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .social-icons-trap {
                gap: 20px;
            }
            
            .social-icon-trap {
                width: 80px;
                height: 80px;
                font-size: 32px;
            }
            
            .modal-container {
                margin: 10px;
            }
            
            .modal-content {
                padding: 20px;
            }
            
            .modal-title {
                font-size: 22px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 32px;
            }
            
            .social-icon-trap {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
            
            .modal-header {
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .modal-actions {
                flex-direction: column;
            }
            
            .modal-btn {
                width: 100%;
                justify-content: center;
            }
        }
