@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Colors - 2026 Premium Dark Palette */
    --bg-main: #0B1015;
    --bg-secondary: #0F161D;
    --accent: #D8B528; /* Gold/Yellow from original/image */
    --accent-hover: #F2C94C;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Layout */
    --container-width: 1300px;
    --section-padding: 120px 0;
    --border-radius: 8px;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: clip;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    animation: bodyFadeIn 0.8s ease-out;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 100%;
    position: relative;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography Extensions */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p, a, span, li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.text-accent { color: var(--accent); }
.text-italic { font-style: italic; }

/* Global Components */

/* Layout Shell */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(11, 16, 21, 0.85);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 95px;
    width: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(8px) brightness(1.4);
    animation: logoFade 1s ease-out 0.2s forwards,
               logoGlow 3.2s ease-in-out 1.3s infinite;
    transition: var(--transition-slow);
}

.logo a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

.logo a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-25deg);
    animation: logoShine 3.5s ease-in-out 2s infinite;
    pointer-events: none;
}

.logo img:hover {
    transform: translateY(0) scale(1.06);
    filter: blur(0) brightness(1.1);
    box-shadow: 0 0 20px 2px rgba(216, 181, 40, 0.5);
    border-color: var(--accent-hover);
}

@keyframes logoFade {
    0% {
        opacity: 0;
        transform: translateY(-30px);
        filter: blur(8px) brightness(1.4);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0) brightness(1);
    }
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 8px 0 rgba(216, 181, 40, 0.3);
    }
    50% {
        box-shadow: 0 0 22px 4px rgba(216, 181, 40, 0.55);
    }
}

@keyframes logoShine {
    0% { left: -120%; }
    60%, 100% { left: 150%; }
}

header.scrolled .logo img {
    height: 70px;
    width: 70px;
    animation: none;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) brightness(1);
}

header.scrolled .logo a::after {
    display: none;
}

nav ul {
    display: flex;
    gap: 32px;
}

nav ul li a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.lang-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* Buttons */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-slow);
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.btn-premium i {
    margin-left: 12px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.btn-premium:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-premium:hover i {
    transform: translateX(5px);
}

.btn-filled {
    background: var(--accent);
    color: var(--bg-main) !important;
    border-color: var(--accent);
}

.btn-filled:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-main) !important;
    box-shadow: 0 15px 40px rgba(216, 181, 40, 0.3);
}

/* Shine effect */
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: -1;
}

.btn-premium:hover::before {
    left: 150%;
}

.lang-switcher-btn i {
    font-size: 14px;
    margin-right: 8px;
}

body.rtl .lang-switcher-btn i {
    margin-right: 0;
    margin-left: 8px;
}

/* Premium Icon System */
.premium-icon-box {
    width: 64px;
    height: 64px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 32px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.premium-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(216, 181, 40, 0.2), transparent 70%);
    opacity: 0;
    transition: var(--transition-fast);
}

.premium-icon-box i, .premium-icon-box img {
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.premium-icon-box img {
    width: 32px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(29%) saturate(718%) hue-rotate(5deg) brightness(92%) contrast(88%);
}

/* Hover Effects for Cards with Icons */
.innovation-card:hover .premium-icon-box,
.feature-card:hover .premium-icon-box,
.service-card:hover .premium-icon-box {
    border-color: var(--accent);
    background: rgba(216, 181, 40, 0.05);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 20px rgba(216, 181, 40, 0.15);
}

.innovation-card:hover .premium-icon-box::before,
.feature-card:hover .premium-icon-box::before,
.service-card:hover .premium-icon-box::before {
    opacity: 1;
}

.innovation-card:hover .premium-icon-box i,
.feature-card:hover .premium-icon-box i,
.service-card:hover .premium-icon-box i {
    transform: rotate(-5deg);
}

/* Sections */
section {
    padding: var(--section-padding);
}

/* Sections shared styles */
.tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
}

.tagline::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

/* Partners Section Styling */
.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.partner-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Premium Footer Styling */
footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--glass-border);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

footer::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(216, 181, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-brand .footer-logo img {
    height: 70px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    margin-bottom: 28px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 320px;
    font-size: 15px;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 50px;
}

body.rtl .footer-column h4::after {
    left: auto;
    right: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 15px;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(10px);
}

body.rtl .footer-links a:hover {
    transform: translateX(-10px);
}

.footer-contact-info li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--bg-main);
    transform: translateY(-8px) scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(216, 181, 40, 0.2);
}

footer .footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright, .footer-legal-links {
    flex: 1;
}

.designer-credit {
    flex: 1;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.designer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    header .container {
        padding: 0 24px;
    }

    /* إخفاء زر اللغة وإظهار زر الهامبرجر بدلاً منه */
    .lang-switcher-btn {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(11, 16, 21, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        transform: translateX(100%);
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 32px;
    }

    nav ul li a {
        font-size: 24px;
        font-weight: 500;
    }

    /* إضافة زر تبديل اللغة داخل قائمة الناف بار على الموبايل */
    nav .lang-switcher-mobile {
        display: flex !important;
        margin-top: 40px;
        font-size: 18px;
        padding: 10px 24px;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* تصغير padding الـ container على الموبايل */
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 8vw, 48px);
    }

    .hero-btns {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .hero-btns .btn-premium {
        width: 100%;
        padding: 14px 20px;
        font-size: 11px;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
    }

    /* شركاء - ضبط الصور على الموبايل لتكون أوضح */
    .partners-list {
        gap: 20px !important;
        padding: 0 10px;
    }

    .partners-list img {
        max-width: 90% !important;
        max-height: 120px !important;
        height: auto;
        width: auto;
    }

    /* فوتر */
    footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* تأكيد كل الصور تتكيف مع العرض */
    img {
        max-width: 100%;
        height: auto;
    }

    /* منع أي section من التجاوز */
    section, footer, header {
        max-width: 100%;
        overflow: hidden;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1002;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.menu-toggle .hamburger-box {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Language & RTL */
body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Readex Pro', sans-serif;
}

body.rtl .tagline {
    justify-content: flex-start;
}

body.rtl .tagline::before {
    display: none;
}

body.rtl .tagline::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
    margin-right: 12px;
}

/* Header RTL fixes */
body.rtl .header-right {
    flex-direction: row-reverse;
}

body.rtl .nav ul {
    flex-direction: row-reverse;
}

body.rtl .footer-contact-info li i {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .btn-premium i {
    margin-left: 0;
    margin-right: 10px;
}

/* Portfolio/About Mirroring */
body.rtl .about-content-wrapper {
    text-align: right;
}

body.rtl .portfolio-info .tagline {
    justify-content: flex-start;
}

/* Video Showcase Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    transition: var(--transition-slow);
}

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

.video-card video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    transition: var(--transition-slow);
}

.video-card:hover video {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal]:nth-child(2).revealed { transition-delay: 0.08s; }
[data-reveal]:nth-child(3).revealed { transition-delay: 0.16s; }
[data-reveal]:nth-child(4).revealed { transition-delay: 0.24s; }
[data-reveal]:nth-child(5).revealed { transition-delay: 0.32s; }
[data-reveal]:nth-child(6).revealed { transition-delay: 0.4s; }

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ambientDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 25px) scale(0.95); }
}

body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(216, 181, 40, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: ambientDrift 18s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -25%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(216, 181, 40, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: ambientDrift 24s ease-in-out infinite reverse;
}

body > * {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent);
    color: var(--bg-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(216, 181, 40, 0.2);
}

[dir="rtl"] .scroll-top {
    right: auto;
    left: 40px;
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    transition: var(--transition-slow);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.floating-btn.whatsapp {
    background: #25D366;
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.floating-btn.email {
    background: var(--accent);
    background: linear-gradient(45deg, var(--accent), var(--accent-hover));
    color: var(--bg-main);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.floating-btn .tooltip {
    position: absolute;
    right: 120%;
    background: rgba(11, 16, 21, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    border: 1px solid var(--glass-border);
    color: white;
    pointer-events: none;
}

body.rtl .floating-btn .tooltip {
    right: auto;
    left: 120%;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 110%;
}

body.rtl .floating-btn:hover .tooltip {
    right: auto;
    left: 110%;
}

@media (max-width: 768px) {
    .floating-contacts {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

body.rtl .floating-contacts {
    right: auto;
    left: 40px;
}

@media (max-width: 768px) {
    body.rtl .floating-contacts {
        left: 20px;
    }
}

.designer-credit a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition-fast);
}

.designer-credit a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
