:root {
    --bg-color: #020005;
    /* Deeper, darker purple-black base */
    --primary-color: #00f3ff;
    /* Cyan Neon */
    --secondary-color: #ff00ff;
    /* Magenta Neon */
    --accent-color: #bc13fe;
    /* Purple Neon */
    --text-color: #ffffff;
    --text-dim: #b0b0b0;
    --card-bg: rgba(20, 20, 30, 0.6);
    /* Slightly more opaque for contrast */
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: "Orbitron", sans-serif;
    --font-body: "Rajdhani", sans-serif;
}

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

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

/* Background Canvas */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Behind everything including city bg */
}

/* Cyberpunk City Background Layer */
.city-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 120%,
            rgba(188, 19, 254, 0.2),
            transparent 70%),
        radial-gradient(circle at 80% 20%,
            rgba(0, 243, 255, 0.15),
            transparent 50%),
        linear-gradient(0deg,
            rgba(2, 0, 5, 1) 0%,
            rgba(2, 0, 5, 0) 50%,
            rgba(2, 0, 5, 1) 100%);
    pointer-events: none;
    overflow: hidden;
}

/* Nova Bot Character */
/* Nova Bot Character */
.nova-container {
    position: fixed;
    bottom: -50px;
    right: -5%;
    /* Move to right */
    left: auto;
    /* Unset left */
    transform: none;
    /* Remove center transform */
    width: auto;
    /* Don't take full width */
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    /* Align right */
    align-items: flex-end;
    z-index: 0;
    pointer-events: none;
    perspective: 1000px;
}

#nova-bot {
    height: 90vh;
    /* Taller */
    width: auto;
    object-fit: cover;

    /* Fade mask: primarily left side where text is, and bottom */
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 20%,
            black 100%),
        linear-gradient(to bottom,
            black 80%,
            transparent 100%);

    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 20%,
            black 100%),
        linear-gradient(to bottom,
            black 80%,
            transparent 100%);
    -webkit-mask-composite: source-in;

    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3));
    transition: transform 0.1s ease-out;
    animation: breath 6s ease-in-out infinite;
}

@keyframes breath {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3)) brightness(1);
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(188, 19, 254, 0.5)) brightness(1.1);
    }
}

/* Instant Glitch for Image Swap */
.image-glitch {
    animation: img-glitch-anim 0.2s steps(2, end) forwards;
}

@keyframes img-glitch-anim {
    0% {
        transform: translate(5px, 0) skew(10deg);
        filter: hue-rotate(90deg) brightness(2);
        opacity: 0.8;
    }

    20% {
        transform: translate(-5px, 0) skew(-10deg);
        filter: hue-rotate(-90deg) brightness(2);
        opacity: 0.8;
    }

    40% {
        transform: translate(0, 0) skew(0);
        filter: none;
        opacity: 1;
    }

    100% {
        transform: none;
        filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3));
        /* Reset to base state */
        opacity: 1;
    }
}

/* Simulated "City Lights" / Fog (no external images) */
.city-bg::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 60%;
    background:
      linear-gradient(180deg, transparent 0%, rgba(0, 243, 255, 0.06) 40%, rgba(188, 19, 254, 0.10) 100%),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 22px);
    opacity: 0.35;
    filter: blur(6px);
}

/* Grid Floor Effect (Retro/Cyber) */
.grid-floor {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background:
        linear-gradient(transparent 0%, rgba(0, 243, 255, 0.1) 100%),
        repeating-linear-gradient(90deg,
            transparent 0,
            transparent 40px,
            rgba(188, 19, 254, 0.1) 40px,
            rgba(188, 19, 254, 0.1) 41px),
        repeating-linear-gradient(0deg,
            transparent 0,
            transparent 40px,
            rgba(0, 243, 255, 0.1) 40px,
            rgba(0, 243, 255, 0.1) 41px);
    transform: perspective(600px) rotateX(70deg) translateY(50px) scale(2.5);
    z-index: -1;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 40px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            transparent 30%,
            var(--bg-color) 120%);
    pointer-events: none;
    z-index: 1;
    /* Above canvas/bg, below content */
}

/* Typography & Utility */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.blink {
    animation: blink 0.8s infinite step-end;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.gradient-text {
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color),
            var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Glitch Effect Class */
.glitch {
    position: relative;
    color: var(--text-color);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(38px, 9999px, 34px, 0);
    }

    5% {
        clip: rect(89px, 9999px, 86px, 0);
    }

    /* ... shortened for brevity, usually more keyframes ... */
    100% {
        clip: rect(12px, 9999px, 67px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(2px, 9999px, 92px, 0);
    }

    /* ... shortened ... */
    100% {
        clip: rect(68px, 9999px, 19px, 0);
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(2, 0, 5, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 0;
    /* Boxy cyber style */
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.lang-opt {
    cursor: pointer;
    color: var(--text-dim);
    transition: 0.3s;
    padding: 0 5px;
}

.lang-opt:hover {
    color: var(--text-color);
}

.lang-opt.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.divider {
    color: var(--text-dim);
    margin: 0 5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--secondary-color);
}

.nav-links a:hover {
    color: var(--text-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    border: 1px solid var(--primary-color);
    padding: 8px 25px;
    color: var(--primary-color);
    background: rgba(0, 243, 255, 0.1);
    border-radius: 0;
    clip-path: polygon(10px 0,
            100% 0,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            0 100%,
            0 10px);
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow:
        0 0 20px var(--primary-color),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-glow {
    background: linear-gradient(45deg,
            var(--primary-color),
            var(--secondary-color));
    color: #fff;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: bold;
    letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s;
    border: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transition: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 40px var(--secondary-color);
    transform: scale(1.05);
}

.btn-ghost {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: bold;
    letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    backdrop-filter: blur(5px);
}

.btn-ghost:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align start */
    text-align: left;
    /* Text left */
    padding: 0 50px;
    position: relative;
    padding-top: 60px;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    /* Limit width to avoid hitting Nova */
    z-index: 10;
    margin-left: 5%;
    /* Offset from edge */
}

.badge {
    display: inline-block;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 15px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 25px;
    background: rgba(188, 19, 254, 0.1);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

.hero h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 50px;
    max-width: 100%;
    /* Full width of container */
    margin-left: 0;
    margin-right: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-group {
    display: flex;
    justify-content: flex-start;
    /* Left align buttons */
    gap: 30px;
}

/* Features Section */
.features {
    padding: 120px 50px;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.section-header .line {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            var(--secondary-color),
            transparent);
    margin: 0 auto;
    box-shadow: 0 0 15px var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(0, 243, 255, 0.1);
    padding: 50px 30px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    /* Corner styling */
    clip-path: polygon(20px 0,
            100% 0,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            0 100%,
            0 20px);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow:
        0 0 30px rgba(0, 243, 255, 0.1),
        inset 0 0 20px rgba(0, 243, 255, 0.05);
    background: rgba(20, 20, 30, 0.7);
}

/* Neon glow line on hover */
.card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    transform: scaleX(0);
    transition: 0.4s;
}

.card:hover::after {
    transform: scaleX(1);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.6));
    transition: 0.4s;
}

.card:hover .icon-box {
    color: var(--secondary-color);
    filter: drop-shadow(0 0 15px rgba(188, 19, 254, 0.8));
    transform: scale(1.1);
}

.card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
}

.card p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
footer {
    padding: 80px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-dim);
    background: #020005;
    position: relative;
    z-index: 10;
}

.socials {
    margin-top: 20px;
}

.socials a {
    font-size: 2rem;
    margin: 0 15px;
    color: var(--text-dim);
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

/* Responsive */
@media (max-width: 768px) {
    .nova-container {
        right: -20%;
        opacity: 0.3;
        /* Fade out on mobile so text is readable */
        transform: scale(0.8);
    }

    .hero {
        text-align: center;
        /* Back to center on mobile */
        justify-content: center;
        padding: 0 20px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        text-align: center;
    }

    header {
        padding: 15px 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-glow,
    .btn-ghost {
        width: 100%;
        max-width: 300px;
    }
}

/* Blog Section (Instagram Style) */
.blog-section {
    padding: 100px 50px;
    position: relative;
    z-index: 2;
}

.blog-profile {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 935px;
    margin: 0 auto 50px auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #00f3ff, #bc13fe);
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
}

.profile-info {
    flex-grow: 1;
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.username {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.btn-follow {
    background: var(--primary-color);
    color: #000;
    padding: 5px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-family: var(--font-body);
}

.profile-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.profile-bio {
    font-size: 1rem;
    color: #fff;
}

.profile-bio a {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 935px;
    margin: 0 auto;
}

.insta-post {
    position: relative;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    padding: 20px;
    text-align: center;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-stats {
    display: flex;
    gap: 30px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.insta-stats i {
    margin-right: 8px;
}

.insta-caption {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    transform: translateY(20px);
    transition: 0.3s;
}

.insta-post:hover .insta-caption {
    transform: translateY(0);
}

.insta-stats i {
    margin-right: 8px;
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .blog-profile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .profile-top {
        justify-content: center;
    }

    .profile-stats {
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .insta-grid {
        gap: 5px;
    }
}

/* Modal Styles */
.insta-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.insta-modal-content {
    background-color: #000;
    width: 90%;
    max-width: 1100px;
    height: 80vh;
    max-height: 800px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
}

.close-modal {
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-grid {
    display: flex;
    height: 100%;
    width: 100%;
}

.modal-image-container {
    width: 60%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #333;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    width: 40%;
    display: flex;
    flex-direction: column;
    background: #000;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f3ff, #bc13fe);
    padding: 2px;
}

.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #000;
}

.modal-username,
.modal-username-inline {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}

.modal-username-inline {
    margin-right: 5px;
}

.modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    color: #fff;
}

.modal-caption-container {
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.modal-comments {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment {
    font-size: 0.9rem;
}

.comment-user {
    font-weight: bold;
    margin-right: 5px;
}

.comment-text {
    color: #ddd;
}

.modal-footer {
    border-top: 1px solid #333;
    padding: 15px;
    color: #fff;
}

.modal-actions {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-actions i:hover {
    color: #999;
    cursor: pointer;
}

.modal-likes {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.modal-time {
    color: #777;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .insta-modal-content {
        height: 90vh;
        flex-direction: column;
        overflow-y: auto;
    }

    .modal-grid {
        flex-direction: column;
        height: auto;
    }

    .modal-image-container {
        width: 100%;
        height: 50vh;
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .modal-details {
        width: 100%;
        height: auto;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        z-index: 1002;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
}