<style>
       * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body, html {
            width: 100%;
            height: 100%;
            background-color: #555555;
            font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
            color: white;
        }

        #SplashScreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .LogoGroup {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            opacity: 0;
            visibility: hidden;  
            will-change: transform, opacity;
        }

        .Label {
            font-size: 1rem;
            letter-spacing: 0.3rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 15px;
            font-weight: 300;
        }

        .Name {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: 0.6rem;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }

        .Animate {
            opacity: 1 !important; 
            visibility: visible !important; 
            animation: SplashEffect 2s ease-in-out forwards;
        }

        @keyframes SplashEffect {
            0% { opacity: 0; transform: scale(0.92) translateY(10px); filter: blur(10px); }
            15% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0px); }
            85% { opacity: 1; transform: scale(1.05) translateY(0); filter: blur(0px); }
            100% { opacity: 0; transform: scale(1.1) translateY(-10px); filter: blur(5px); }
        }

        #MainContent {
            opacity: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            position: relative; /* 为右下角伪装页尾提供绝对定位容器 */
            background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
            transition: opacity 1s ease-in-out;
        }

        .ShowContent { opacity: 1 !important; }

        h1 { font-size: 3rem; margin-bottom: 20px; color: #FFFFFF; }

        .Container { 
            position: relative; 
            width: 300px; 
            height: 150px; 
            text-align: center; 
        }

        .LeftText { 
            position: absolute; 
            top: 10%; 
            left: 10%; 
            font-size: 20px; 
            padding: 10px; 
        }

        .RightText { 
            position: absolute; 
            bottom: 10%; 
            right: 10%; 
            font-size: 20px; 
            padding: 10px; 
        }

        .Slash { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%;
            height: 100%;
            transform: rotate(-45deg);
            transform-origin: center center; 
            z-index: 1; 
        }

        .Slash::before { 
            content: '/'; 
            position: absolute; 
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%) rotate(45deg); 
            font-size: 50px; 
            color: #FFFFFF; 
        }

        .HomeWrapper {
            text-align: center;
            animation: fadeInUp 1.2s ease;
        }

        .Title {
            font-size: 4rem;
            letter-spacing: 0.5rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .Subtitle {
            font-size: 1rem;
            letter-spacing: 0.3rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 40px;
        }

        .CompanySection {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 400px;
        }

        .CompanyCard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 18px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            cursor: pointer;
        }

        .CompanyCard:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .CompanyName {
            font-size: 1.15rem;
            font-weight: 500;
            color: #FFFFFF;
            letter-spacing: 0.05rem;
        }

        .CompanyTag {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .CompanyCard:hover .CompanyTag {
            color: #FFFFFF;
            border-color: rgba(255, 255, 255, 0.6);
        }

        .MainFooter {
            position: absolute;
            bottom: 30px;
            right: 40px;
            display: flex;
            gap: 30px;
            animation: fadeInUp 1.5s ease;
            z-index: 10;
        }

        .FooterLink {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.15rem;
            font-weight: 400;
            transition: color 0.3s ease;
            white-space: nowrap; 
        }

        .FooterLink:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        @media (max-width: 768px) {
            .MainFooter {
                bottom: 25px;
                right: 25px; 
                gap: 18px;  
            }
            .FooterLink {
                font-size: 0.78rem;   
                letter-spacing: 0.08rem; 
            }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
</style>
