@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-dark: #000000;
    --bg-panel: rgba(20, 20, 20, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    /* Brand Colors */
    --accent-cyan: #ffffff;
    --accent-blue: #cccccc;
    --accent-glow: rgba(255, 255, 255, 0.2);
    --danger: #ff0055;
    
    --glass-blur: 16px;
    --border-radius: 16px;
    --transition-speed: 0.4s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(200, 200, 200, 0.03), transparent 25%);
    background-attachment: fixed;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}
a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--accent-glow);
}

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

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: var(--bg-panel);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-glow);
    object-fit: cover;
}

.badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.user-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

.btn-logout {
    color: var(--danger) !important;
}
.btn-logout::after { background-color: var(--danger); }

/* Hero */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(5,10,20,0.4) 0%, var(--bg-dark) 100%);
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.highlight {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.w-100 { width: 100%; }

/* Projects Grid */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.project-card {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 20px 40px rgba(0, 240, 255, 0.15), inset 0 0 15px rgba(0, 240, 255, 0.1);
}

.project-card:hover::before {
    opacity: 0.5;
}

.project-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.15), rgba(0, 68, 255, 0.15));
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    align-self: flex-start;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, #b3e5fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    border-left: 2px solid rgba(0, 240, 255, 0.3);
    padding-left: 15px;
}

.project-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: auto;
}

.price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    display: flex;
    align-items: center;
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.actions a.btn, .actions form, .actions form button {
    flex: 1;
    width: 100%;
    justify-content: center;
}

.actions form {
    margin: 0;
}

/* Forms & Auth */
.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.auth-box {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.auth-box h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
    background-color: rgba(0,0,0,0.5);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.alert-danger {
    background-color: rgba(255, 0, 85, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 0, 85, 0.3);
}

.alert-success {
    background-color: rgba(0, 255, 204, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 255, 204, 0.3);
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th, td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: rgba(0,0,0,0.2);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: rgba(0, 240, 255, 0.05);
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 30px; }
.mb-4 { margin-bottom: 30px; }
.text-muted { color: var(--text-secondary); }

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 80px;
}

/* Apple-style Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Infinite Image Marquee */
.marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}
.marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    padding: 0 15px;
}
.marquee-item img {
    height: 150px;
    width: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.marquee-item img:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================
   SIDEBAR & HEADER FRAGMENT CSS
   ========================================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}
.sidebar.active {
    left: 0;
}
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-header h3 {
    margin: 0;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sidebar-content {
    padding: 20px 0;
    overflow-y: auto;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.sidebar-link svg {
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}
.sidebar-link:hover {
    background: rgba(0, 240, 255, 0.05);
    border-left-color: var(--accent-cyan);
    color: #fff;
    padding-left: 30px;
}
.sidebar-link:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* ==========================================================
   CREDIT CARD UI CSS
   ========================================================== */
.credit-card {
    width: 100%;
    max-width: 400px;
    height: 220px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.9), rgba(5, 10, 20, 0.95));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 25px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 30px auto;
    color: white;
    font-family: 'JetBrains Mono', monospace;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.credit-card:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.credit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.credit-card:hover::before {
    opacity: 1;
}
.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #e5b15b, #ffd782, #b87b22);
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.3);
}
.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.2);
}
.card-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    height: 40px;
    width: auto;
    opacity: 0.9;
}
.card-number {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.card-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.card-detail-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}
.card-detail-value {
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ==========================================================
   FLOATING BACK BUTTON CSS
   ========================================================== */
.floating-back-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
.floating-back-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

/* ==========================================================
   FILTER & SEARCH STYLES
   ========================================================== */
.filter-toolbar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-input, .filter-select {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.filter-input {
    flex: 2;
    min-width: 250px;
}

.filter-select {
    flex: 1;
    min-width: 150px;
    cursor: pointer;
}
.filter-select option {
    background-color: #111;
    color: #fff;
}

.filter-input:focus, .filter-select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.05);
}

.project-card, .admin-table-row {
    transition: all 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.hidden-card {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    display: none !important;
}

/* ==========================================================
   ADMIN TABLE STYLES
   ========================================================== */
.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.admin-table th {
    padding: 15px 20px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.admin-table td {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: all 0.3s ease;
}

.admin-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.08);
}

.admin-table td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-left: 1px solid transparent;
}

.admin-table td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-right: 1px solid transparent;
}

.admin-table tbody tr:hover td:first-child {
    border-left: 1px solid var(--accent-cyan);
}
.admin-table tbody tr:hover td:last-child {
    border-right: 1px solid var(--accent-cyan);
}

/* ==========================================================
   FLUID BACKGROUND & BLOBS
   ========================================================== */
#fluid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    transition: transform 0.1s ease-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
}

.blob-2 {
    top: 40%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(200,200,200,0.1) 0%, rgba(200,200,200,0) 70%);
}

.blob-3 {
    bottom: -30%;
    left: 20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(150,150,150,0.1) 0%, rgba(150,150,150,0) 70%);
}

/* ==========================================================
   PREMIUM SECTION HEADERS
   ========================================================== */
.section-header-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.section-badge-premium {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.section-title-premium {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
