    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(145deg, #0a0f1e 0%, #0c1222 100%);
            color: #f0f3fc;
            line-height: 1.4;
            scroll-behavior: smooth;
        }

        .wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1.5rem 6rem;
        }

        .hero {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeSlideUp 0.6s ease-out;
        }

        .hero h1 {
            font-size: clamp(2rem, 7vw, 3.8rem);
            font-weight: 800;
            background: linear-gradient(135deg, #FFD166, #FF6B4A, #D946EF);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .hero p {
            font-size: 1.2rem;
            color: #a0b3d9;
            margin-top: 0.75rem;
            font-weight: 500;
        }

        .section {
            background: rgba(18, 25, 45, 0.65);
            backdrop-filter: blur(2px);
            border-radius: 2rem;
            padding: 1.5rem 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .section:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 105, 80, 0.3);
        }

        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border-left: 5px solid #FF6B4A;
            padding-left: 1rem;
        }

        .section-title span {
            background: linear-gradient(120deg, #FFD166, #FF8C42);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
        }

        .link-card {
            display: flex;
            flex-direction: column;
            background: rgba(12, 18, 34, 0.7);
            border-radius: 1.2rem;
            padding: 0.9rem 1.2rem;
            transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            text-decoration: none;
            color: #eef3ff;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(4px);
        }

        .link-card:hover {
            background: linear-gradient(115deg, #FF6B4A20, #FFB34720);
            border-color: #FF6B4A;
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 12px 20px -12px #FF6B4A60;
        }

        .link-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .link-icon {
            font-size: 1.5rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.2s ease;
        }

        .link-card:hover .link-icon {
            transform: rotate(5deg) scale(1.1);
        }

        .link-text {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.2px;
            word-break: break-word;
        }

        .link-description {
            font-size: 0.8rem;
            color: #b0c0e0;
            line-height: 1.35;
            margin-top: 0.35rem;
            padding-left: 2.25rem;
        }

        .floating-action {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: auto;
            max-width: 90vw;
        }

        .main-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(95deg, #FF416C, #FF4B2B);
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.4rem;
            letter-spacing: 0.5px;
            color: white;
            box-shadow: 0 15px 30px -8px #FF4B2B80, 0 0 0 0 rgba(255,75,43,0.5);
            transition: all 0.25s ease;
            border: none;
            backdrop-filter: blur(4px);
            white-space: nowrap;
        }

        @keyframes pulse-glow {
            0% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.6); }
            70% { box-shadow: 0 0 0 12px rgba(255, 75, 43, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0); }
        }

        .main-cta:hover {
            transform: translateY(-5px) scale(1.02);
            background: linear-gradient(95deg, #FF5E6E, #FF6B3D);
            box-shadow: 0 20px 35px -8px #FF2E00;
            animation: pulse-glow 1.2s infinite;
        }

        .main-cta:active {
            transform: translateY(2px);
        }

        .cta-icon {
            font-size: 1.7rem;
            transition: transform 0.2s;
        }

        .main-cta:hover .cta-icon {
            transform: translateX(6px);
        }

        .footer-note {
            text-align: center;
            margin-top: 3rem;
            font-size: 0.8rem;
            color: #6c7aa0;
            border-top: 1px solid #1f2a44;
            padding-top: 1.8rem;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 680px) {
            .wrapper {
                padding: 1rem 1rem 5rem;
            }
            .section {
                padding: 1.2rem;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
            .main-cta {
                padding: 0.8rem 1.8rem;
                font-size: 1.2rem;
                white-space: nowrap;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .link-description {
                padding-left: 0;
            }
            .link-header {
                flex-wrap: wrap;
            }
        }
    </style>