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

        :root {
            --gold: #D4AF37;
            --dark-gold: #B8860B;
            --light-gold: #F7E7A0;
            --cream: #FFF8E7;
            --ivory: #FFFFF0;
            --champagne: #F7E7CE;
            --bronze: #CD7F32;
            --rich-black: #1C1C1C;
            --warm-black: #2C2C2C;
            --soft-shadow: rgba(212, 175, 55, 0.3);
            --deep-shadow: rgba(184, 134, 11, 0.4);
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --info: #17a2b8;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
            min-height: 100vh;
            color: var(--rich-black);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .header {
            text-align: center;
            padding: 4rem 0 2rem;
        }

        .logo {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold), var(--bronze));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            font-family: 'Merriweather', serif;
        }

        .tagline {
            font-size: 1.3rem;
            color: var(--warm-black);
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .main-content {
            padding: 2rem 0 4rem;
        }

        .portal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .portal-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .portal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--bronze));
        }

        .portal-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--gold);
        }

        .portal-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .portal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--rich-black);
            margin-bottom: 1rem;
            font-family: 'Merriweather', serif;
        }

        .portal-description {
            color: var(--warm-black);
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .portal-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--gold), var(--bronze));
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--soft-shadow);
        }

        .portal-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--deep-shadow);
        }

        .features-section {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .features-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--rich-black);
            margin-bottom: 2rem;
            font-family: 'Merriweather', serif;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            text-align: center;
            padding: 1.5rem;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--rich-black);
            margin-bottom: 0.5rem;
        }

        .feature-description {
            color: var(--warm-black);
            font-size: 0.9rem;
        }

        .footer {
            text-align: center;
            padding: 3rem 0;
            color: var(--warm-black);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-text {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--bronze);
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .logo {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.1rem;
            }

            .portal-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .portal-card {
                padding: 2rem;
            }

            .features-section {
                padding: 2rem 1.5rem;
            }

            .features-title {
                font-size: 2rem;
            }
        }

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

        .portal-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .portal-card:nth-child(1) { animation-delay: 0.1s; }
        .portal-card:nth-child(2) { animation-delay: 0.2s; }
        .portal-card:nth-child(3) { animation-delay: 0.3s; }
        .portal-card:nth-child(4) { animation-delay: 0.4s; }
    