
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
            min-height: 100vh;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            position: relative;
        }

        #particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .particle.rising {
            animation: float linear infinite;
        }

        .particle.floating {
            animation: floatAround ease-in-out infinite;
        }

        .particle.glow {
            box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
            animation: glowPulse ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100vh) translateX(var(--tx)) scale(1) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes floatAround {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            25% {
                transform: translate(var(--tx), var(--ty)) scale(1.2);
                opacity: 1;
            }
            50% {
                transform: translate(calc(var(--tx) * -1), var(--ty)) scale(0.8);
                opacity: 0.8;
            }
            75% {
                transform: translate(var(--tx), calc(var(--ty) * -1)) scale(1.1);
                opacity: 0.9;
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.4;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
            }
        }

        .container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        h1 {
            text-align: center;
            color: #F87E30;
            margin-bottom: 10px;
            font-size: 3rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            font-weight: 900;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .header-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .tagline {
            color: #FF6600;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-top: 5px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 20px;
        }

        .card {
            background: linear-gradient(135deg, #454545 0%, #333333 100%);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 2px solid #F87E30;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(248, 126, 48, 0.2), transparent);
            transition: left 0.5s;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(248, 126, 48, 0.4);
            border-color: #FF6600;
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            transition: transform 0.3s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .facebook { background: linear-gradient(135deg, #F87E30, #FF6600); }
        .instagram { background: linear-gradient(135deg, #F87E30, #FF6600); }
        .youtube { background: linear-gradient(135deg, #F87E30, #FF6600); }
        .whatsapp { background: linear-gradient(135deg, #F87E30, #FF6600); }
        .location { background: linear-gradient(135deg, #F87E30, #FF6600); }
        .contact { background: linear-gradient(135deg, #F87E30, #FF6600); }

        .card h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #F87E30;
        }

        .card p {
            color: #ffffff;
            font-size: 1rem;
            line-height: 1.6;
        }

        .card-link {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 25px;
            background: linear-gradient(135deg, #F87E30, #FF6600);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .card-link:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(248, 126, 48, 0.5);
            background: linear-gradient(135deg, #FF6600, #F87E30);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .tagline {
                font-size: 1.1rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 30px 20px;
            }
        }