/* =========================================
   CSS Reset & Variables (Ultra Modern)
========================================= */
:root {
    --bg-color: #0b0b0d; /* Very dark background */
    --text-primary: #ffffff;
    --text-secondary: #8b8d96;
    --accent-color: #7c3aed; /* The purple accent requested */
    --accent-glow: rgba(124, 58, 237, 0.2);
    
    --glass-bg: rgba(20, 20, 24, 0.4);
    --glass-border: rgba(255, 255, 255, 0.04);
    
    --font-main: 'Inter', sans-serif;
    --font-title: 'Syncopate', sans-serif; /* Wide futuristic font */
    
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Background Effects */
#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -2;
    pointer-events: none;
    opacity: 0.8;
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999; /* Put noise above everything slightly */
    opacity: 0.8;
}

.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(52, 211, 153, 0.1) 40%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.text-accent {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.glass-panel {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 12px;
}

.modern-glass {
    background: rgba(20, 20, 24, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(124, 58, 237, 0.05);
}

/* =========================================
   Navigation
========================================= */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 11, 13, 0.8);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: var(--accent-color);
}

.lang-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

.btn-nav {
    border: 1px solid var(--glass-border);
    padding: 8px 24px;
    border-radius: 6px;
}

.btn-nav:hover {
    background: #fff;
    color: #000 !important;
}

/* =========================================
   Hero Section (Matching Image)
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

/* Left Side Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Floating Code Snippet */
.floating-code {
    position: absolute;
    top: -60px;
    left: -120px;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    text-align: left;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.code-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dot {
    width: 10px; height: 10px; border-radius: 50%; margin-right: 6px;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.file-name { color: #8b8d96; font-size: 0.75rem; margin-left: 10px; }

.floating-code pre { margin: 0; color: #fff; line-height: 1.4; }

@keyframes float {
    0% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(-5deg); }
}

.pill-badge {
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
    z-index: 2;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 5.5rem;
    letter-spacing: 6px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1;
    z-index: 2;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.6), 0 0 60px rgba(52, 211, 153, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.social-squares {
    display: flex;
    gap: 15px;
}

.social-sq {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-sq:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

/* Right Side - Phone/Discord Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #111113;
    border-radius: 35px;
    border: 6px solid #222226;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(124, 58, 237, 0.4), inset 0 0 0 2px #333338;
    overflow: hidden;
    transform: rotate(5deg) scale(1.05); /* Slight tilt like the image */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    z-index: 5;
}

.phone-frame:hover {
    transform: rotate(0deg) scale(1.1) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 60px rgba(52, 211, 153, 0.4), inset 0 0 0 2px #333338;
}

.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #222226;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-time {
    position: absolute;
    top: 20px; left: 25px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.discord-simple {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #111214;
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
}

.ds-avatar-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

#ds-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ds-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    background-color: #f23f42;
    border-radius: 50%;
    border: 4px solid #111214;
}

.ds-display-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f2f3f5;
    margin-bottom: 4px;
}

.ds-username {
    font-size: 0.9rem;
    color: #949ba4;
    margin-bottom: 20px;
}

.ds-status-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #949ba4;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.ds-status-icon {
    width: 10px;
    height: 10px;
    background-color: #f23f42;
    border-radius: 50%;
}

.ds-divider {
    width: 80%;
    height: 1px;
    background-color: rgba(255,255,255,0.05);
    margin-bottom: 20px;
}

.ds-activity-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #949ba4;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.ds-activity-text {
    color: #b5bac1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.ds-add-btn {
    width: 80%;
    background-color: #2b2d31;
    color: #dbdee1;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.ds-add-btn:hover {
    background-color: #383a40;
}

/* =========================================
   General Sections
========================================= */
section {
    padding: 120px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(124, 58, 237, 0.3);
    z-index: 2;
}

.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(52, 211, 153, 0.1));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    border: 1px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
}

.contact-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-text p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.dc-item i {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(0,0,0,0.5);
}

.btn-submit {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
        margin-top: 80px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .floating-code {
        display: block;
        top: -20px;
        left: -10px;
        transform: scale(0.8) rotate(-5deg);
    }
    
    .bg-glow {
        width: 100vw;
        height: 100vw;
    }
    
    .nav-content {
        padding: 0 20px;
    }
}

/* =========================================
   Custom Scrollbar & Selection
========================================= */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
::selection {
    background: rgba(124, 58, 237, 0.4);
    color: #fff;
}

/* =========================================
   Cursor Glow Follower
========================================= */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998; /* Just under the noise */
    transition: width 0.3s, height 0.3s;
}

/* =========================================
   Scroll Reveal Animations
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for staggered children if needed */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* =========================================
   Tech Stack / Marquee Section
========================================= */
.tech-stack {
    padding: 60px 0;
    background: #09090b;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
/* Gradient masks for fading ends */
.tech-stack::before,
.tech-stack::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}
.tech-stack::before {
    left: 0;
    background: linear-gradient(to right, #0b0b0d, transparent);
}
.tech-stack::after {
    right: 0;
    background: linear-gradient(to left, #0b0b0d, transparent);
}
.marquee-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-title);
    color: rgba(255, 255, 255, 0.2);
    margin: 0 40px;
    transition: color 0.3s;
}
.marquee-item:hover {
    color: var(--accent-color);
}
.marquee-item i {
    font-size: 1.8rem;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   Projects / Portfolio Section
========================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111113;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}
.project-img {
    width: 100%;
    height: 220px;
    background-color: #1a1b1e;
    background-size: cover;
    background-position: center;
    position: relative;
}
/* A nice gradient overlay */
.project-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, #111113, transparent);
}
.project-info {
    padding: 25px;
}
.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}
.project-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.project-tags {
    display: flex;
    gap: 10px;
}
.project-tags span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--text-secondary);
}
.project-link {
    position: absolute;
    top: 20px; right: 20px;
    width: 45px; height: 45px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}
.project-card:hover .project-link {
    transform: translateY(0);
    opacity: 1;
}
.project-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* =========================================
   About Section (Existing)
========================================= */
.about-wrapper {
    padding: 50px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.skill-tag {
    padding: 10px 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* =========================================
   Toast Notifications
========================================= */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: rgba(17, 17, 19, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: var(--font-body);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success i {
    color: #27c93f;
    font-size: 1.2rem;
}

.toast.error i {
    color: #ff5f56;
    font-size: 1.2rem;
}

/* =========================================
   Stats Section
========================================= */
.stats-section {
    padding: 60px 20px 20px 20px;
    position: relative;
    z-index: 5;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-num {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    letter-spacing: -1px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .stats-container {
        gap: 20px;
        justify-content: space-around;
    }
    .stat-num {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        width: 40%;
        margin-bottom: 20px;
    }
}

.footer-warning {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ascunde badge-uri de la hosting gratuit */
a[href*="netlify.com"], 
a[href*="000webhost"], 
img[alt*="000webhost"],
.netlify-badge {
    display: none !important;
}
