/* 
  Project: Desir Beats 
  Developer: Acedigate
  Role: UI/UX & Frontend Developer
  Website: https://acedigate.com/
  Date: August 2025
*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
            -moz-user-select: none;
            -webkit-user-drag: none;
        }


        h1{
            padding:15px;
            color:#f1f1f1;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .container {
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

        .logo {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #101010, #909090);
            border-radius: 50%;
            margin: 0 auto 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .logo img{
            width: 100%;
            border-radius: 50%;
        }


        .social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::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.5s ease;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .social-icon:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            background: rgba(255, 255, 255, 0.2);
        }

        .youtube:hover {
            background: linear-gradient(45deg, #ff0000, #ff6b6b);
            border-color: #ff0000;
        }

        .instagram:hover {
            background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
            border-color: #833ab4;
        }
        .bstars:hover {
            background: linear-gradient(45deg, #ff0000, #ff0000, #ff0000);
            border-color: #ff0000;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }


        @media (max-width: 768px) {
            .logo {
                width: 150px;
                height: 150px;
                font-size: 36px;
                margin-bottom: 30px;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .social-icons {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                width: 120px;
                height: 120px;
                font-size: 28px;
                margin-bottom: 25px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .social-icons {
                gap: 15px;
            }
        }
