body {
            background: #050505;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        /* Hərəkətli Arxa Fon */
        .background {
            position: absolute;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at center, #1e3c72 0%, #000 80%);
            z-index: -1;
        }

        .stars {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://www.transparenttextures.com/patterns/stardust.png');
            animation: moveStars 50s linear infinite;
        }

        @keyframes moveStars {
            from { background-position: 0 0; }
            to { background-position: 1000px 1000px; }
        }

        .card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(25px);
            padding: 50px 30px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            box-shadow: 0 0 50px rgba(0, 210, 255, 0.2);
            max-width: 400px;
            width: 90%;
            animation: fadeIn 1.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .profile-container {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto 25px;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #00d2ff;
            box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
            transition: 0.5s;
        }

        .profile-img:hover { transform: rotate(360deg); }

        h1 { font-family: 'Orbitron', sans-serif; font-size: 26px; color: #fff; margin-bottom: 5px; }
        
        /* İstədiyin Qalın Leqeb */
        .nickname { 
            font-family: 'Orbitron', sans-serif; 
            font-weight: 900; 
            font-size: 24px; 
            color: #00d2ff; 
            text-shadow: 0 0 15px rgba(0, 210, 255, 0.8);
            display: block; 
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .links-container { display: flex; flex-direction: column; gap: 15px; }

        .link-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        .link-item:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
        }

        .link-item i { margin-right: 10px; font-size: 20px; }

        /* Neon Effektləri */
        .whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; box-shadow: 0 0 20px #25d366; }
        .telegram:hover { background: #0088cc; border-color: #0088cc; color: #fff; box-shadow: 0 0 20px #0088cc; }
        .phone:hover { background: #00d2ff; border-color: #00d2ff; color: #fff; box-shadow: 0 0 20px #00d2ff; }
