        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #0ea5e9;
            --accent: #f97316;
            --text-dark: #1e293b;
            --text-mid: #475569;
            --text-light: #64748b;
            --background: #ffffff;
            --background-alt: #f8fafc;
            --background-gradient: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
            --border: #e2e8f0;
            --radius: 12px;
            --shadow: 0 10px 30px -10px rgba(0, 115, 255, 0.2);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
        }

        body {
            background: var(--background-gradient);
            color: var(--text-dark);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 900px;
            background: var(--background);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            animation: fadeIn 0.8s ease-out;
        }

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

        .header {
            padding: 40px 40px 20px;
            text-align: center;
            background: var(--background-alt);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
        }

        .logo-container {
            margin-bottom: 25px;
        }

        .logo {
            font-size: 3.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1.5px;
            padding: 15px 30px;
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .logo::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: 0.5s;
        }

        .logo:hover::after {
            left: 100%;
        }

        .logo span {
            color: var(--accent);
        }

        .domain-status {
            font-size: 1.3rem;
            color: var(--text-mid);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .domain-status span {
            color: var(--accent);
            font-weight: 600;
        }

        .main-content {
            padding: 30px 40px;
        }

        .section {
            margin-bottom: 35px;
        }

        h2 {
            font-size: 1.7rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        p {
            color: var(--text-mid);
            margin-bottom: 18px;
            font-size: 1.1rem;
        }

        .highlight {
            color: var(--primary);
            font-weight: 600;
        }

        .target-audience {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

        .audience-item {
            flex: 1;
            min-width: 200px;
            background: var(--background-alt);
            padding: 15px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .audience-item h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }

        .contact-info {
            background: var(--background-alt);
            padding: 25px;
            border-radius: var(--radius);
            margin-bottom: 30px;
        }

        .contact-details {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            background: var(--background);
            padding: 12px 20px;
            border-radius: 8px;
            border: 1px solid var(--border);
            flex: 1;
            min-width: 220px;
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-item svg {
            margin-right: 12px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .platforms {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .platform-link {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 20px;
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            color: var(--text-mid);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .platform-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }

        .platform-link span {
            position: relative;
            z-index: 2;
        }

        .platform-link:hover {
            color: white;
            border-color: transparent;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
        }

        .platform-link:hover::before {
            opacity: 1;
        }

        .disclaimer {
            font-size: 0.9rem;
            color: var(--text-light);
            padding: 20px;
            background: var(--background-alt);
            border-radius: var(--radius);
            margin-top: 30px;
            border-left: 4px solid var(--accent);
        }

        .footer {
            text-align: center;
            padding: 25px;
            color: var(--text-light);
            font-size: 0.95rem;
            border-top: 1px solid var(--border);
            background: var(--background-alt);
        }

        /* Animation for platform links */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .platform-link {
            animation: pulse 8s infinite ease-in-out;
        }

        .platform-link:nth-child(2) {
            animation-delay: 0.5s;
        }

        .platform-link:nth-child(3) {
            animation-delay: 1s;
        }

        .platform-link:nth-child(4) {
            animation-delay: 1.5s;
        }

        .platform-link:nth-child(5) {
            animation-delay: 2s;
        }

        .platform-link:nth-child(6) {
            animation-delay: 2.5s;
        }

        .platform-link:nth-child(7) {
            animation-delay: 3s;
        }

        .platform-link:nth-child(8) {
            animation-delay: 3.5s;
        }

        .platform-link:nth-child(9) {
            animation-delay: 4s;
        }

        @media (max-width: 768px) {
            .header {
                padding: 30px 20px 15px;
            }
            
            .logo {
                font-size: 2.8rem;
                padding: 12px 20px;
            }
            
            .main-content {
                padding: 20px;
            }
            
            .contact-details {
                flex-direction: column;
            }
            
            .platforms {
                grid-template-columns: 1fr;
            }
            
            h2 {
                font-size: 1.5rem;
            }

            .target-audience {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 2.2rem;
            }
            
            .domain-status {
                font-size: 1.1rem;
            }
            
            .contact-item {
                min-width: 100%;
            }

            h2 {
                font-size: 1.4rem;
            }

            p {
                font-size: 1rem;
            }
        }