* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a2332 0%, #2d3e52 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            overflow-x: hidden;
        }

        /* Animated background elements */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-element {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .bg-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .bg-element:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: -7s;
        }

        .bg-element:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(5deg); }
            66% { transform: translateY(10px) rotate(-5deg); }
        }

        .container {
            max-width: 400px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .profile-section {
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out;
        }

        .logo-container {
            width: 140px;
            height: 140px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .logo-container img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 4px 16px rgba(0,0,0,0.10);
            display: block;
        }

        .logo-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .logo {
            font-size: 48px;
            font-weight: bold;
            color: #1a2332;
            transform: perspective(100px) rotateX(0deg);
            transition: transform 0.3s ease;
        }

        .logo-container:hover .logo {
            transform: perspective(100px) rotateX(10deg) rotateY(5deg);
        }

        .company-name {
            font-size: 32px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .company-subtitle {
            font-size: 16px;
            color: #d4af37;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .company-description {
            font-size: 14px;
            color: #a8b8c8;
            line-height: 1.5;
            max-width: 300px;
            margin: 0 auto;
        }

        .links-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .link-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 20px;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .link-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .link-item:hover::before {
            left: 100%;
        }

        .link-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
            border-color: #d4af37;
            background: rgba(212, 175, 55, 0.1);
        }

        .link-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #1a2332;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .link-item:hover .link-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .youtube-icon {
            background: linear-gradient(135deg, #FF0000, #CC0000) !important;
            color: white !important;
        }

        .whatsapp-icon {
            background: linear-gradient(135deg, #25D366, #128C7E) !important;
            color: white !important;
        }

        .instagram-icon {
            background: linear-gradient(135deg, #E4405F, #833AB4, #F77737) !important;
            color: white !important;
        }

        .link-content {
            flex: 1;
            text-align: left;
        }

        .link-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
            color: #ffffff;
        }

        .link-description {
            font-size: 13px;
            color: #a8b8c8;
            line-height: 1.4;
        }

        .footer {
            margin-top: 40px;
            text-align: center;
            color: #6b7c93;
            font-size: 12px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

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

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }

        .link-item.clicked {
            animation: pulse 0.4s;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .container {
                max-width: 350px;
                padding: 0 15px;
            }
            
            .company-name {
                font-size: 28px;
            }
            
            .link-item {
                padding: 18px;
            }
            
            .link-title {
                font-size: 16px;
            }
        }

        /* Hover effects for mobile */
        @media (hover: none) {
            .link-item:active {
                transform: scale(0.98);
            }
        }