 body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .globe-container {
            position: relative;
            height: 180px;
            width: 180px;
            margin: 0 auto;
        }
        
        .globe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, #0ea5e9, #0f172a);
            border-radius: 50%;
            box-shadow: 
                inset 0 0 50px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(14, 165, 233, 0.6);
            overflow: hidden;
        }
        
        .globe::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-50%);
        }
        
        .globe-inner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 90%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #0f172a, #0ea5e9);
            opacity: 0.3;
        }
        
        .link-card {
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(14, 165, 233, 0.3);
            transition: all 0.3s ease;
            transform: translateY(0);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        
        .link-card:hover {
            transform: translateY(-5px);
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
            }
        }
        
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .shine {
            position: relative;
            overflow: hidden;
        }
        
        .shine::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            background: rgba(255, 255, 255, 0.13);
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0.13) 0%,
                rgba(255, 255, 255, 0.13) 77%,
                rgba(255, 255, 255, 0.5) 92%,
                rgba(255, 255, 255, 0.0) 100%
            );
            transform: rotate(30deg);
            transition: all 0.7s ease;
        }
        
        .shine:hover::after {
            left: 120%;
        }
        
        .social-icon {
            transition: all 0.3s ease;
            border: 2px solid rgba(14, 165, 233, 0.3);
        }
        
        .social-icon:hover {
            transform: scale(1.1);
            background: rgba(14, 165, 233, 0.2);
            border-color: rgba(245, 158, 11, 0.5);
        }
    