        .request-hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .request-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .request-card {
            background: var(--color-surface);
            border-radius: 14px;
            padding: 2rem;
            text-align: center;
            position: relative;
            transition: .3s ease;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .request-card:hover {
            transform: translateY(-6px);
            border-color: var(--color-primary);
            box-shadow: 0 0 18px rgba(0, 119, 255, 0.4);
        }

        .request-btn {
            display: inline-block;
            padding: .9rem 1.8rem;
            background: linear-gradient(135deg, var(--color-primary), #00a2ff);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 1rem;
            transition: .3s ease;
        }

        .request-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 14px rgba(0, 119, 255, 0.6);
        }

        #authUser {
            text-align: right;
            margin: 10px 25px 0 0;
            font-size: 14px;
            opacity: .75;
        }

/* === Extracted inline styles === */
.hidden { display: none !important; }

