    
        body {
            margin: 0;
            background: #1a1a1a;
            font-family: Arial, sans-serif;
        }

        .social-media-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 20px 0;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #ff8c42;
            text-decoration: none;
            font-size: 24px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: #ff8c42;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
        }

        .social-icon.facebook:hover {
            background: #3b5998;
            box-shadow: 0 8px 25px rgba(59, 89, 152, 0.3);
        }

        .social-icon.twitter:hover {
            background: #1da1f2;
            box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
        }

        .social-icon.linkedin:hover {
            background: #0077b5;
            box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
        }

        .social-icon.youtube:hover {
            background: #ff0000;
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
        }

        .social-icon.tiktok:hover {
            background: #000000;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Demo section to show placement */
        .demo-hero {
            text-align: center;
            color: white;
            padding: 100px 20px 50px;
        }

        .demo-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }

        .demo-hero p {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #ccc;
        }

        .demo-hero .warning-text {
            color: #ff8c42;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .demo-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #ff8c42;
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: #ff8c42;
            border: 2px solid #ff8c42;
        }
   