/* =================================
   Futuristic Design 2026 - Stefan Drușcă
   Design cu fundal video, efecte neon și animații SF
   ================================= */

/* Futuristic Color Palette */
:root {
    --neon-blue: #00f3ff;
    --neon-cyan: #00d9ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff00ff;
    --dark-bg: #0a0a0f;
    --dark-surface: #151520;
    --dark-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --glow-blue: rgba(0, 243, 255, 0.5);
    --glow-purple: rgba(176, 38, 255, 0.5);
    --glow-pink: rgba(255, 0, 255, 0.4);
}

/* Video Background Container */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--dark-bg);
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

/* Pe mobil, ascunde video-ul complet pentru performanță */
@media (max-width: 768px) {
    .video-background video {
        display: none;
    }
}

/* Fallback animated gradient background */
.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #0a0a0f 0%, 
        #1a1a2e 25%, 
        #0f0f1f 50%, 
        #1a1a2e 75%, 
        #0a0a0f 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Grid Overlay */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Body Futuristic Styling - !important pentru a avea prioritate peste style.css */
body.futuristic-theme {
    background: var(--dark-bg) !important;
    background-color: var(--dark-bg) !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    position: relative;
    min-height: 100vh;
}


body.futuristic-theme::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(176, 38, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Container with Glassmorphism */
body.futuristic-theme .container {
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 46, 0.4) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(0, 243, 255, 0.05);
}

/* Navbar Futuristic */
body.futuristic-theme .navbar {
    background: rgba(10, 10, 15, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 243, 255, 0.2);
}

/* Logo - efecte direct pe imagine */
body.futuristic-theme .navbar-logo {
    position: relative;
    display: inline-block;
}

body.futuristic-theme .navbar-logo img {
    filter: brightness(1.2) contrast(1.1);
    transition: filter 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

body.futuristic-theme .navbar-logo:hover img {
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 20px rgba(0, 243, 255, 0.8))
            drop-shadow(0 0 40px rgba(0, 243, 255, 0.6))
            drop-shadow(0 0 60px rgba(176, 38, 255, 0.4));
    transform: scale(1.05);
}

body.futuristic-theme .navbar-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
    align-items: center;
}

body.futuristic-theme .navbar-menu a {
    color: var(--text-secondary);
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
}

body.futuristic-theme .navbar-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

body.futuristic-theme .navbar-menu a:hover,
body.futuristic-theme .navbar-menu a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--glow-blue);
}

body.futuristic-theme .navbar-menu a:hover::before,
body.futuristic-theme .navbar-menu a.active::before {
    width: 80%;
}

/* Futuristic Buttons */
body.futuristic-theme .btn {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: var(--text-primary);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

body.futuristic-theme .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

body.futuristic-theme .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 243, 255, 0.5),
                0 0 30px rgba(176, 38, 255, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

body.futuristic-theme .btn:hover::before {
    width: 300px;
    height: 300px;
}

body.futuristic-theme .btn-secondary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    box-shadow: 0 4px 15px rgba(176, 38, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

body.futuristic-theme .btn-secondary:hover {
    box-shadow: 0 6px 25px rgba(176, 38, 255, 0.5),
                0 0 30px rgba(255, 0, 255, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Cards with Glassmorphism */
body.futuristic-theme .card,
body.futuristic-theme .service-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.futuristic-theme .card::before,
body.futuristic-theme .service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.futuristic-theme .card:hover,
body.futuristic-theme .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 243, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.3),
                0 0 40px rgba(176, 38, 255, 0.2),
                inset 0 0 30px rgba(0, 243, 255, 0.1);
}

body.futuristic-theme .card:hover::before,
body.futuristic-theme .service-card:hover::before {
    opacity: 1;
}

/* Service Icons */
body.futuristic-theme .service-icon {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(176, 38, 255, 0.2));
    border: 2px solid rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3),
                inset 0 0 20px rgba(0, 243, 255, 0.1);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 243, 255, 0.3), inset 0 0 20px rgba(0, 243, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 243, 255, 0.5), inset 0 0 30px rgba(0, 243, 255, 0.2); }
}

/* Typography */
body.futuristic-theme h1,
body.futuristic-theme h2,
body.futuristic-theme h3 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    font-weight: 700;
    letter-spacing: -0.5px;
}

body.futuristic-theme h1 {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
}

body.futuristic-theme p {
    color: var(--text-secondary);
    line-height: 1.8;
}

body.futuristic-theme a {
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

body.futuristic-theme a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--glow-purple);
}

/* Hero Section */
body.futuristic-theme .hero {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 40px rgba(0, 243, 255, 0.1);
}

body.futuristic-theme .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 243, 255, 0.1), transparent 30%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

body.futuristic-theme .hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

body.futuristic-theme .hero p {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Forms */
body.futuristic-theme input[type="text"],
body.futuristic-theme input[type="email"],
body.futuristic-theme input[type="number"],
body.futuristic-theme textarea,
body.futuristic-theme select {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.875rem;
    transition: all 0.3s ease;
}

body.futuristic-theme input:focus,
body.futuristic-theme textarea:focus,
body.futuristic-theme select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3),
                inset 0 0 10px rgba(0, 243, 255, 0.1);
}

body.futuristic-theme label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Blog Posts */
body.futuristic-theme .blog-post {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

body.futuristic-theme .blog-post:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 243, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.2);
}

body.futuristic-theme .blog-post img {
    display: block;
    max-width: 560px;
    height: 160px;
    max-height: 160px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    border: 2px solid rgba(0, 243, 255, 0.3);
}

/* Pagina articol blog (single post) – la fel de lat ca restul paginii */
body.futuristic-theme .post {
    max-width: 100% !important;
    width: 100%;
    background: rgba(26, 26, 46, 0.6) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(0, 243, 255, 0.05);
}

body.futuristic-theme .post h1 {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.futuristic-theme .post .blog-meta {
    color: var(--text-secondary);
    border-bottom-color: rgba(0, 243, 255, 0.2);
}

body.futuristic-theme .post .blog-meta i {
    color: var(--neon-cyan);
}

body.futuristic-theme .post img {
    display: block;
    max-width: 640px;
    max-height: 260px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

body.futuristic-theme .post div[style*="line-height"],
body.futuristic-theme .post .post-content {
    color: var(--text-secondary);
}

body.futuristic-theme .post div[style*="line-height"] p,
body.futuristic-theme .post div[style*="line-height"] li,
body.futuristic-theme .post div[style*="line-height"] a {
    color: var(--text-secondary);
}

body.futuristic-theme .post div[style*="line-height"] a:hover {
    color: var(--neon-cyan);
}

/* Pagina Despre Mine – la fel de lat ca restul paginii */
body.futuristic-theme article.post .about-intro,
body.futuristic-theme .about-intro {
    max-width: 100%;
    width: 100%;
    background: rgba(26, 26, 46, 0.6) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
}

body.futuristic-theme .about-content {
    color: var(--text-secondary);
}

body.futuristic-theme .about-content p,
body.futuristic-theme .about-content li,
body.futuristic-theme .about-content h1,
body.futuristic-theme .about-content h2,
body.futuristic-theme .about-content h3 {
    color: var(--text-primary);
}

body.futuristic-theme .about-content p {
    color: var(--text-secondary);
}

body.futuristic-theme .about-image img {
    background: transparent;
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px;
}

/* Footer */
body.futuristic-theme .footer {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(0, 243, 255, 0.3);
    color: var(--text-secondary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

/* Pagination */
body.futuristic-theme .pagination a,
body.futuristic-theme .pagination span {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

body.futuristic-theme .pagination a:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

body.futuristic-theme .pagination .active {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* Alerts */
body.futuristic-theme .alert {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
}

body.futuristic-theme .alert-success {
    border-color: rgba(0, 255, 100, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.2);
}

body.futuristic-theme .alert-danger {
    border-color: rgba(255, 50, 50, 0.5);
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.2);
}

/* Floating Particles Animation */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue),
                0 0 20px var(--neon-blue);
    animation: float 15s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Smooth scroll cu offset pentru anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* ========== MOBILE: viewport și încadrare ========== */
html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body.futuristic-theme {
    overflow-x: hidden;
    max-width: 100vw;
}

body.futuristic-theme .container {
    max-width: 100%;
    box-sizing: border-box;
}

body.futuristic-theme main {
    max-width: 100%;
    overflow-x: hidden;
}

body.futuristic-theme img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    body.futuristic-theme .container {
        width: 100%;
        max-width: 100vw;
        padding: 1rem;
        margin: 1rem auto;
        border-radius: 16px;
        box-sizing: border-box;
    }

    /* ========== NAVBAR MOBIL: toggle vizibil, meniu ascuns până la click ========== */
    body.futuristic-theme .navbar-container {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        position: relative;
    }

    body.futuristic-theme .navbar-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        margin: 0 0 0 auto;
        border: 1px solid rgba(0, 243, 255, 0.3);
        border-radius: 8px;
        background: rgba(26, 26, 46, 0.8);
        cursor: pointer;
        z-index: 1002;
        -webkit-tap-highlight-color: transparent;
        font: inherit;
        color: inherit;
        line-height: 1;
    }

    body.futuristic-theme .navbar-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        margin: 3px 0;
        background-color: var(--neon-cyan);
        box-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body.futuristic-theme .navbar-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    body.futuristic-theme .navbar-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    body.futuristic-theme .navbar-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Meniu ascuns implicit pe mobil */
    body.futuristic-theme .navbar-menu {
        display: none !important;
        flex-direction: column;
        flex-wrap: nowrap;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0.5rem 1rem 0;
        padding: 1rem;
        list-style: none;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 243, 255, 0.3);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 243, 255, 0.2);
        z-index: 1001;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    body.futuristic-theme .navbar-menu.active {
        display: flex !important;
    }

    body.futuristic-theme .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    }
    body.futuristic-theme .navbar-menu li:last-child {
        border-bottom: none;
    }

    body.futuristic-theme .navbar-menu a {
        display: block;
        padding: 1rem 0.75rem;
        color: var(--text-primary);
        font-size: 1rem;
        -webkit-tap-highlight-color: transparent;
    }

    body.futuristic-theme .navbar-menu a:hover {
        background: rgba(0, 243, 255, 0.15);
        color: var(--neon-cyan);
    }

    /* Oprește scroll pe body când meniul e deschis */
    body.futuristic-theme.menu-open {
        overflow: hidden;
    }

    body.futuristic-theme h1 {
        font-size: 2rem;
    }

    body.futuristic-theme .hero {
        padding: 2rem 1rem;
    }

    body.futuristic-theme .card,
    body.futuristic-theme .service-card {
        padding: 1.5rem;
    }

    body.futuristic-theme .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    body.futuristic-theme .video-background video {
        opacity: 0.2;
    }

    body.futuristic-theme .video-background::after {
        background-size: 30px 30px;
        animation-duration: 30s;
    }

    body.futuristic-theme .navbar-logo img {
        max-height: 80px;
        filter: brightness(1.2) contrast(1.1);
    }

    body.futuristic-theme .post {
        padding: 1.5rem;
    }

    body.futuristic-theme .about-intro {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    body.futuristic-theme .container {
        padding: 0.75rem;
        margin: 0.75rem auto;
    }

    body.futuristic-theme h1 {
        font-size: 1.5rem;
    }

    body.futuristic-theme .hero {
        padding: 1.5rem 1rem;
    }

    body.futuristic-theme .card,
    body.futuristic-theme .service-card {
        padding: 1rem;
    }

    body.futuristic-theme .navbar-menu a {
        padding: 0.875rem 0.75rem;
        font-size: 0.95rem;
    }

    body.futuristic-theme .navbar-logo img {
        max-height: 60px;
        filter: brightness(1.2) contrast(1.1);
    }
}
