
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", sans-serif;
            min-height: 100vh;
            background: #0b0d15;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated gradient background */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(10, 80, 255, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 0, 200, 0.20) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
                #0b0d15;
            animation: bgShift 18s ease-in-out infinite alternate;
        }

        @keyframes bgShift {
            0% {
                background-position: 0% 0%;
            }

            100% {
                background-position: 100% 100%;
            }
        }

        /* Floating orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            z-index: 0;
            pointer-events: none;
            animation: orbFloat 20s ease-in-out infinite alternate;
        }

        .orb--1 {
            width: 500px;
            height: 500px;
            background: #3b00ff;
            top: -150px;
            left: -150px;
            animation-duration: 25s;
        }

        .orb--2 {
            width: 400px;
            height: 400px;
            background: #ff0077;
            bottom: -100px;
            right: -100px;
            animation-duration: 30s;
            animation-delay: -5s;
        }

        .orb--3 {
            width: 300px;
            height: 300px;
            background: #00d4ff;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 22s;
            animation-delay: -10s;
            opacity: 0.2;
        }

        @keyframes orbFloat {
            0% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(60px, -40px) scale(1.1);
            }

            66% {
                transform: translate(-30px, 50px) scale(0.9);
            }

            100% {
                transform: translate(20px, -20px) scale(1.05);
            }
        }

        /* ----- MAIN WRAPPER ----- */
        .portal-wrapper {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* ----- HEADER ----- */
        .header {
            text-align: center;
            margin-bottom: 55px;
            animation: fadeUp 0.9s ease-out forwards;
        }

        .header .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 100px;
            padding: 6px 22px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .header .badge i {
            margin-right: 8px;
            color: #4af;
        }

        .header h1 {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: clamp(2.6rem, 8vw, 5.2rem);
            letter-spacing: 4px;
            background: linear-gradient(135deg, #ffffff 0%, #a0b4ff 50%, #ff77c8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .header .sub {
            font-size: clamp(1rem, 2vw, 1.35rem);
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }

        .header .sub i {
            color: #4af;
            margin: 0 6px;
        }

        .header .glow-line {
            width: 120px;
            height: 3px;
            margin: 22px auto 0;
            background: linear-gradient(90deg, transparent, #4af, #f07, transparent);
            border-radius: 10px;
            animation: pulseGlow 3s ease-in-out infinite;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                opacity: 0.4;
                transform: scaleX(1);
            }

            50% {
                opacity: 1;
                transform: scaleX(1.2);
            }
        }

        /* ----- GRID ----- */
        .portal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 28px;
            animation: fadeUp 1s ease-out 0.2s both;
        }

        /* ----- CARDS (glassmorphism + hover 3D) ----- */
        .card {
            position: relative;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            padding: 34px 28px 32px;
            color: #fff;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s ease,
                border-color 0.3s ease;
            cursor: default;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Shine overlay */
        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 28px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 50%, rgba(255, 255, 255, 0.05));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            transition: opacity 0.5s;
        }

        .card:hover {
            transform: translateY(-8px) scale(1.01);
            border-color: rgba(255, 255, 255, 0.20);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
        }

        .card .icon-wrap {
            width: 58px;
            height: 58px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: #7af;
            margin-bottom: 20px;
            transition: 0.4s;
        }

        .card:hover .icon-wrap {
            background: rgba(100, 180, 255, 0.12);
            border-color: rgba(100, 180, 255, 0.25);
            transform: scale(1.05) rotate(-2deg);
            color: #fff;
        }

        .card h2 {
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            font-size: 1.35rem;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #fff 60%, #a0b4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 22px;
            flex: 1;
        }

        .card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 22px;
        }

        .card .tags span {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 100px;
            padding: 4px 14px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        /* ----- BUTTONS ----- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 26px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 14px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            margin-top: auto;
            backdrop-filter: blur(4px);
            cursor: pointer;
            font-family: "Poppins", sans-serif;
            width: 100%;
            min-height: 52px;
        }

        .btn i {
            font-size: 0.9rem;
            transition: transform 0.3s;
        }

        .btn::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 14px;
            background: linear-gradient(135deg, #4af, #f07);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: -1;
        }

        .btn:hover:not(:disabled) {
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px -10px rgba(70, 130, 255, 0.3);
            color: #fff;
        }

        .btn:hover:not(:disabled)::after {
            opacity: 1;
        }

        .btn:hover:not(:disabled) i {
            transform: translateX(5px);
        }

        .btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none !important;
        }

        .btn--primary {
            background: linear-gradient(135deg, rgba(70, 130, 255, 0.25), rgba(255, 0, 119, 0.20));
            border-color: rgba(70, 130, 255, 0.25);
        }

        .btn--primary::after {
            background: linear-gradient(135deg, #4af, #f07);
        }

        /* Special "Launch DigiCMS" — more prominent */
        .btn--accent {
            background: linear-gradient(135deg, #4af, #f07);
            border: none;
            color: #fff;
            box-shadow: 0 8px 30px -8px rgba(70, 130, 255, 0.4);
        }

        .btn--accent::after {
            display: none;
        }

        .btn--accent:hover:not(:disabled) {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 40px -10px rgba(70, 130, 255, 0.6);
            border-color: transparent;
        }

        /* ----- SECRET BUTTON (hidden link) ----- */
        .btn--secret {
            background: linear-gradient(135deg, rgba(255, 200, 0, 0.15), rgba(255, 100, 0, 0.15));
            border-color: rgba(255, 200, 0, 0.20);
        }

        .btn--secret::after {
            background: linear-gradient(135deg, #ffcc00, #ff6600);
        }

        .btn--secret .icon-wrap-secret {
            color: #ffcc00;
        }

        .btn--secret:hover:not(:disabled) {
            box-shadow: 0 12px 30px -10px rgba(255, 200, 0, 0.3);
        }

        /* Loading spinner */
        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-top: 2px solid #fff;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* ----- FOOTER ----- */
        .footer {
            text-align: center;
            color: rgba(255, 255, 255, 0.30);
            font-size: 0.85rem;
            margin-top: 55px;
            letter-spacing: 0.5px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 30px;
            animation: fadeUp 1s ease-out 0.5s both;
        }

        .footer .heart {
            color: #f07;
            display: inline-block;
            animation: heartBeat 2s ease-in-out infinite;
        }

        @keyframes heartBeat {

            0%,
            100% {
                transform: scale(1);
            }

            15% {
                transform: scale(1.25);
            }

            30% {
                transform: scale(1);
            }

            45% {
                transform: scale(1.15);
            }

            60% {
                transform: scale(1);
            }
        }

        .footer a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: 0.3s;
        }

        .footer a:hover {
            color: #4af;
        }

        /* ----- ANIMATIONS ----- */
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Card entrance stagger */
        .card:nth-child(1) {
            animation: fadeUp 0.7s ease-out 0.1s both;
        }

        .card:nth-child(2) {
            animation: fadeUp 0.7s ease-out 0.2s both;
        }

        .card:nth-child(3) {
            animation: fadeUp 0.7s ease-out 0.3s both;
        }

        .card:nth-child(4) {
            animation: fadeUp 0.7s ease-out 0.4s both;
        }

        .card:nth-child(5) {
            animation: fadeUp 0.7s ease-out 0.5s both;
        }

        /* ----- RESPONSIVE TWEAKS ----- */
        @media (max-width: 700px) {
            .portal-grid {
                grid-template-columns: 1fr;
                max-width: 460px;
                margin-left: auto;
                margin-right: auto;
            }

            .card {
                padding: 28px 22px 26px;
            }

            .header h1 {
                font-size: 2.4rem;
            }

            .orb--1,
            .orb--2 {
                width: 250px;
                height: 250px;
            }

            .orb--3 {
                width: 180px;
                height: 180px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
                min-height: 46px;
            }
        }

        @media (max-width: 400px) {
            .header h1 {
                font-size: 2rem;
            }

            .card h2 {
                font-size: 1.1rem;
            }

            .btn {
                font-size: 0.8rem;
                padding: 10px 16px;
                min-height: 42px;
            }
        }

        /* scrollbar styling */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #0b0d15;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.25);
        }