:root {
  --primary: #0052cc;
  --primary-dark: #003d99;
  --primary-light: #4c9aff;
  --secondary: #00c7b7;
  --secondary-light: #00e6d3;
  --accent: #ff6b35;
  --dark: #0a1628;
  --dark-light: #1a2744;
  --gray-900: #172b4d;
  --gray-700: #344563;
  --gray-500: #5e6c84;
  --gray-300: #a5adba;
  --gray-100: #f4f5f7;
  --white: #ffffff;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    #0a1628 0%,
    #1a2744 50%,
    #0052cc 100%
  );
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

/* ==================== LOADER ==================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  position: relative;
}

.loader-plane {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  animation: loaderFly 2s ease-in-out infinite;
}

.loader-plane svg {
  width: 40px;
  height: 40px;
  fill: var(--secondary);
}

@keyframes loaderFly {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(5deg);
  }
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -1px;
}
.loader-logo span {
  color: var(--secondary);
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
}
.logo-icon svg {
  width: 18px;
  height: 18px;
  color: var(--dark);
}
.logo span {
  color: var(--secondary);
}

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

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
}

/* ==================== ARTICLE HEADER ==================== */
.article-header {
  padding: 8rem 2rem 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Flying Planes */
.article-plane {
  position: absolute;
  opacity: 0.1;
  animation: flyAcross 30s linear infinite;
}

.article-plane svg {
  fill: var(--secondary);
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
}

.article-plane.plane-1 {
  top: 20%;
  animation-delay: 0s;
}

.article-plane.plane-2 {
  top: 60%;
  animation-delay: -15s;
}

@keyframes flyAcross {
  0% {
    left: -5%;
  }
  100% {
    left: 105%;
  }
}

/* Clouds */
.article-cloud {
  position: absolute;
  opacity: 0.08;
  animation: floatCloud 40s linear infinite;
}

.article-cloud svg {
  fill: var(--white);
  width: 80px;
  height: 40px;
}

.article-cloud.cloud-1 {
  top: 15%;
  animation-duration: 45s;
}

.article-cloud.cloud-2 {
  top: 45%;
  animation-duration: 35s;
  animation-delay: -15s;
}

.article-cloud.cloud-2 svg {
  width: 60px;
  height: 30px;
}

.article-cloud.cloud-3 {
  top: 75%;
  animation-duration: 50s;
  animation-delay: -25s;
}

.article-cloud.cloud-3 svg {
  width: 100px;
  height: 50px;
}

.article-cloud.cloud-4 {
  top: 30%;
  animation-duration: 55s;
  animation-delay: -8s;
}

.article-cloud.cloud-4 svg {
  width: 50px;
  height: 25px;
}

.article-cloud.cloud-5 {
  top: 55%;
  animation-duration: 42s;
  animation-delay: -30s;
}

.article-cloud.cloud-5 svg {
  width: 70px;
  height: 35px;
}

.article-cloud.cloud-6 {
  top: 85%;
  animation-duration: 38s;
  animation-delay: -20s;
}

.article-cloud.cloud-6 svg {
  width: 55px;
  height: 28px;
}

@keyframes floatCloud {
  0% {
    left: -15%;
  }
  100% {
    left: 110%;
  }
}

/* Animated pins */
.header-pin {
  position: absolute;
  opacity: 0.15;
  animation: pinFloat 4s ease-in-out infinite;
}

.header-pin svg {
  fill: var(--secondary);
}
.header-pin.pin-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.header-pin.pin-2 {
  top: 60%;
  right: 15%;
  animation-delay: -2s;
}
.header-pin.pin-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: -1s;
}

@keyframes pinFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 183, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.article-header-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--secondary);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb .current {
  color: var(--secondary);
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 199, 183, 0.2);
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.article-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.article-excerpt {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85); /* Mejor contraste */
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-details strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.author-details span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.meta-item i {
  width: 18px;
  height: 18px;
}

/* ==================== FEATURED IMAGE ==================== */
.featured-image-container {
  max-width: 900px;
  margin: -3rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.featured-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== ARTICLE CONTENT ==================== */
.article-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-content {
  max-width: 720px;
}

/* Typography for article */
.article-content p {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
}

.article-content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.5px;
  position: relative;
  padding-left: 1rem;
}

.article-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.article-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 82, 204, 0.3);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.article-content a:hover {
  text-decoration-color: var(--primary);
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-content li {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}

.article-content blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--gray-100);
  border-left: 4px solid var(--secondary);
  border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-900);
  margin-bottom: 0;
}

.article-content img {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(0, 82, 204, 0.05) 0%,
    rgba(0, 199, 183, 0.05) 100%
  );
  border: 1px solid rgba(0, 82, 204, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.highlight-box h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.highlight-box li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* ==================== SIDEBAR ==================== */
.article-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.sidebar-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Table of contents */
.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.toc-list a:hover {
  background: var(--gray-100);
  color: var(--primary);
  border-left-color: var(--primary);
}

.toc-list a.active {
  background: rgba(0, 82, 204, 0.1);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 600;
}

/* Share buttons */
.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.twitter:hover {
  background: #1da1f2;
  color: var(--white);
}
.share-btn.linkedin:hover {
  background: #0a66c2;
  color: var(--white);
}
.share-btn.facebook:hover {
  background: #1877f2;
  color: var(--white);
}
.share-btn.whatsapp:hover {
  background: #25d366;
  color: var(--white);
}

/* CTA card */
.sidebar-cta {
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
}

.sidebar-cta h4 {
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-cta p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ==================== ARTICLE FOOTER ==================== */
.article-footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 3rem;
  margin-top: 3rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* Author box */
.author-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 16px;
}

.author-box-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-box-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.author-box-content .role {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.author-box-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 0;
}

/* ==================== RELATED POSTS ==================== */
.related-section {
  padding: 5rem 2rem;
  background: var(--gray-100);
}

.related-container {
  max-width: 1100px;
  margin: 0 auto;
}

.related-header {
  text-align: center;
  margin-bottom: 3rem;
}

.related-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.related-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.related-card-image {
  height: 180px;
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.related-card-content {
  padding: 1.5rem;
}

.related-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.related-card-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-content h3 a:hover {
  color: var(--primary);
}

.related-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-column ul a:hover {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==================== PROGRESS BAR ==================== */
.reading-progress {
  position: fixed;
  top: 70px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--secondary);
  z-index: 999;
  transition: width 0.1s ease;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .article-content-wrapper {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  .author-box-avatar {
    margin: 0 auto;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.article-excerpt {
  color: var(--white);
}

.article-categories,
.reading-time {
  color: var(--white) !important;
}
