    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500&display=swap');

    :root {
        --accent: #043258;
        --accent-rgb: 4, 50, 88;
        --sub-accent: #870e28;
        --sub-accent-rgb: 135, 14, 40;
        --color-1: #b8890f;
        --color-1-rgb: 184, 137, 15;
        --color-light: #f8fafc;
        --color-2: #1e293b;
        --color-3: #006868;
        --color-text: #1e293b;
        --color-white: #ffffff;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html,
    body {
        height: 100%;
        width: 100%;
        font-family: 'DM Sans', sans-serif;
        overflow: hidden;
    }

    .page {
        height: 100%;
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        background: var(--color-light);
    }

    /* Background layers */
    .bg-gradient {
        position: absolute;
        inset: 0;
        z-index: 0;
        background: radial-gradient(ellipse at 50% 0%, #e8eef7 0%, var(--color-light) 60%);
    }

    .bg-pattern {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.05;
        background-image:
            repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(15, 23, 42, 0.5) 48px, rgba(15, 23, 42, 0.5) 49px),
            repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(15, 23, 42, 0.5) 48px, rgba(15, 23, 42, 0.5) 49px);
    }

    /* Floating orbs */
    .orb {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
        filter: blur(40px);
        animation: floatOrb 5s ease-in-out infinite;
    }

    .orb-1 {
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2) 0%, transparent 70%);
        top: -80px;
        left: -60px;
        animation-delay: 0s;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(var(--sub-accent-rgb), 0.3) 0%, transparent 70%);
        top: 30%;
        right: -70px;
        animation-delay: 5s;
    }

    .orb-3 {
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(var(--color-1-rgb), 0.3) 0%, transparent 70%);
        bottom: 10%;
        left: -50px;
        animation-delay: 7s;
    }

    @keyframes floatOrb {
        0% {
            transform: translate(0, 0) scale(1);
        }

        50% {
            transform: translate(40px, 60px) scale(1.08);
        }

        100% {
            transform: translate(0, 0) scale(1);
        }
    }

    /* Stars/particles */
    .star {
        position: absolute;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--color-2);
        animation: twinkle 3s ease-in-out infinite alternate;
    }

    @keyframes twinkle {
        0% {
            opacity: 0.1;
        }

        100% {
            opacity: 0.4;
        }
    }

    /* Content */
    .content {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 420px;
        padding: 40px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        height: 100%;
        overflow-y: auto;
    }

    /* Logo area */
    .logo-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        animation: fadeDown 0.7s ease both;
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .logo-ring {
        width: 30vw;
        height: 30vw;
        max-width: 150px;
        max-height: 150px;
        border-radius: 50%;
        border: 3px solid rgba(4, 50, 88, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(8px);
        box-shadow: 0 0 0 6px rgba(4, 50, 88, 0.08), 0 8px 32px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .logo-ring img {
        width: 29vw;
        max-width: 144px;
        height: auto;
    }

    .logo-ring::after {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1.5px solid rgba(4, 50, 88, 0.2);
        animation: pulse 2.5s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.06);
            opacity: 1;
        }
    }

    .school-name {
        font-family: "Marmelad", 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--color-2);
        text-align: center;
        line-height: 1.2;
        letter-spacing: 0.02em;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }

    .gold-line {
        width: 48px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-1), transparent);
        border-radius: 2px;
    }

    /* Contact block */
    .contact-block {
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
        animation: fadeUp 0.7s 0.3s ease both;
        width: 100%;
        text-align: center;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        color: var(--accent);
        font-weight: 500;
        font-size: 14px;
        line-height: 1.6;
        transition: opacity 0.2s;
    }

    .contact-item:hover {
        opacity: 0.7;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        stroke: var(--accent);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        margin-top: 2px;
    }

    .contact-text {
        font-size: 14px;
        color: var(--color-2);
        font-weight: 400;
        line-height: 1.6;
    }

    /* Quick links */
    .quick-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        width: 100%;
        animation: fadeUp 0.7s 0.4s ease both;
    }

    .quick-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 8px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(4, 50, 88, 0.15) 0%, rgba(4, 50, 88, 0.08) 100%);
        border: 1.5px solid rgba(var(--sub-accent-rgb), 0.3);
        backdrop-filter: blur(6px);
        color: var(--color-2);
        font-size: 13px;
        font-weight: 500;
        font-family: 'DM Sans', sans-serif;
        text-decoration: none;
        text-align: center;
        letter-spacing: 0.01em;
        transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
        cursor: pointer;
    }

    .quick-btn:hover {
        transform: scale(0.98);
        background: rgba(4, 50, 88, 0.25);
        box-shadow: 0 4px 16px rgba(4, 50, 88, 0.15);
    }

    .quick-btn:active {
        transform: scale(0.96);
    }

    /* Social row */
    .social-row {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
        animation: fadeUp 0.7s 0.55s ease both;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        text-decoration: none;
        transition: transform 0.15s, box-shadow 0.2s;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .social-btn:hover {
        transform: scale(0.98);
    }

    .social-btn:active {
        transform: scale(0.92);
    }

    .social-btn svg {
        width: 22px;
        height: 22px;
        position: relative;
        z-index: 1;
    }

    .social-web {
        background: linear-gradient(135deg, var(--accent), #0a1628);
        box-shadow: 0 4px 20px rgba(4, 50, 88, 0.4);
    }

    .social-ig {
        background: linear-gradient(135deg, var(--sub-accent), #5c0a1a, #6b0d20);
        box-shadow: 0 4px 20px rgba(135, 14, 40, 0.4);
    }

    .social-fb {
        background: var(--accent);
        box-shadow: 0 4px 20px rgba(4, 50, 88, 0.4);
    }

    .social-yt {
        background: var(--color-1);
        box-shadow: 0 4px 20px rgba(184, 137, 15, 0.4);
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(16px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    body {
        box-sizing: border-box;
    }