@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* =========================
     Root Variables
========================= */
:root {
  /* Common Variables */
  --hologram-start: #f3e5f5;
  --hologram-end: #e1bee7;
  --text-color: #2c3e50;
  --highlight-gradient: linear-gradient(135deg, #64b5f6, #42a5f5);
  --hover-gradient: linear-gradient(135deg, #42a5f5, #1e88e5);
  --background-color: #f9f9f9;
  --white: #ffffff;
}

/* =========================
        Theme: Blue
========================= */
.theme-blue {
  --primary: #1e3a56;
  --secondary: #2c5364;
  --accent: #29b6f6;
  --light: #e3f2fd;
  --text-color: #ffffff;
}

/* =========================
      Theme: Lavender
========================= */
.theme-lavender {
  --hologram-start: #ede7f6;
  --hologram-end: #d1c4e9;
  --accent-color: #9575cd;
  --background-color: #ede7f6;
  --text-color: #4a148c;
}

/* =========================
      Theme: Orange
========================= */
.theme-orange {
  --primary-color: #e65100;
  --secondary-color: #ffcc80;
  --accent-color: #ff5722;
  --background-color: #fff3e0;
  --text-color: #3e2723;
}

/* =========================
      Theme: Green
========================= */
.theme-green {
  --primary: #2e7d32;
  --secondary: #66bb6a;
  --accent: #00e676;
  --light: #e8f5e9;
  --text-color: #1b5e20;
}

/* =========================
      Theme: Dark
========================= */
.theme-dark {
  --primary: #121212;
  --secondary: #1e1e1e;
  --accent: #bb86fc;
  --light: #2c2c2c;
  --text-color: #e0e0e0;
}

/* =========================
      Base Styling (Desktop & Mobile)
========================= */
body {
  background-color: #fff;
  background-image: url('https://github.com/taanhluan/JonathanTa/blob/main/assets/images/vecteezy_close-up-of-computer-circuit-photo-of-a-dell-computer-with_46478822.jpeg?raw=true');
  background-size: cover; /* Đảm bảo ảnh nền luôn phủ kín */
  background-position: center center; /* Căn giữa */
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-color);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh; /* Đảm bảo chiều cao tối thiểu luôn bằng màn hình */
  position: relative;
}

/* Đảm bảo background full screen và tối ưu hiển thị trên Mobile */
@media (max-width: 768px) {
  body {
    background-size: cover; /* Vẫn phủ kín màn hình */
    background-position: center top; /* Căn chỉnh vị trí phù hợp hơn */
    background-attachment: scroll; /* Tránh lỗi trên một số thiết bị di động */
  }
}

/* Lớp phủ làm mờ nền để readability tốt hơn */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Hiệu ứng tối nhẹ trên nền */
  z-index: -1; /* Đặt phía sau nội dung */
}

/* =========================
      Responsive Typography
========================= */
h1, h2, h3 {
  color: var(--text-color);
  font-weight: bold;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.75rem, 4.5vw, 2rem); }
h3 { font-size: clamp(1.5rem, 4vw, 1.75rem); }

/* Mobile Adjustments */
@media (max-width: 768px) {
  h1, h2, h3 {
    text-align: center;
    margin-bottom: 10px;
  }
}

/* =========================
      Link Styling
========================= */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: var(--hover-gradient);
}

/* =========================
      General Responsive Adjustments
========================= */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  p {
    text-align: justify;
    padding: 0 10px;
  }
}

/* =========================
      Keyframes: Hologram
========================= */
@keyframes hologramEffect {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* =========================
      Hologram Animation
========================= */
.hologram {
  background: var(--highlight-gradient);
  background-size: 200% 200%;
  animation: hologramEffect 6s infinite alternate;
  border-radius: 10px;
  padding: 20px;
  color: var(--text-color);
}

button {
  background: var(--highlight-gradient);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

button:hover {
  background: var(--hover-gradient);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: var(--accent);
}

/* Themed Background */
.theme-background {
  background-color: var(--background-color);
  color: var(--text-color);
}

/* Utility Classes */
.theme-primary {
  color: var(--white);
  background-color: var(--primary);
}

.theme-secondary {
  color: var(--white);
  background-color: var(--secondary);
}

/* =========================
   Global Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   Enhanced Responsive Header Section
========================= */
.header {
  text-align: center;
  padding: 50px 15px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 250, 255, 0.8), rgba(255, 240, 250, 0.8), rgba(250, 255, 240, 0.8));
  background-size: 200% 200%;
  animation: hologramEffect 8s infinite alternate;
  border-bottom: 3px solid var(--accent);
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin: 20px auto;
  width: 95%;
  max-width: 1100px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.header:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-brown);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.header p {
  font-size: 1.3rem;
  color: var(--text-brown);
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* =========================
   Profile Photo Styles
========================= */
.profile-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 6px solid var(--white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.profile-photo img:hover {
  transform: scale(1.05);
}

/* =========================
   Responsive Icon Container
========================= */
.header-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.header-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--background-color);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.header-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.header-icons a img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

/* =========================
   Fix Text Layout Issue (Web & Mobile)
========================= */
.text-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 1.1rem;
  max-width: 90%;
  margin: 0 auto;
}

.text-container span {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 8px;
}

.text-container .separator {
  font-weight: bold;
  padding: 0 5px;
}

/* =========================
   Mobile Responsiveness
========================= */
@media (max-width: 768px) {
  .header {
    padding: 35px 10px;
    margin: 15px auto;
  }
  
  .header h1 {
    font-size: 2.2rem;
  }
  
  .header p {
    font-size: 1.1rem;
  }

  .profile-photo {
    width: 110px;
    height: 110px;
    border: 5px solid var(--white);
  }
  
  .header-icons {
    gap: 10px;
  }
  
  .header-icons a {
    width: 40px;
    height: 40px;
  }

  .header-icons a img {
    width: 20px;
    height: 20px;
  }

  .text-container {
    flex-direction: column;
    gap: 3px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 25px 5px;
    margin: 10px auto;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .header p {
    font-size: 0.95rem;
  }

  .profile-photo {
    width: 90px;
    height: 90px;
    border: 4px solid var(--white);
  }

  .header-icons {
    gap: 8px;
  }

  .header-icons a {
    width: 35px;
    height: 35px;
  }

  .header-icons a img {
    width: 18px;
    height: 18px;
  }

  .text-container {
    font-size: 0.9rem;
    text-align: center;
  }
}


/* =========================
   Enhanced Responsive About Section
========================= */
.about {
  max-width: 1100px;
  margin: 50px auto;
  padding: 50px;
  background: linear-gradient(135deg, 
              rgba(255, 255, 255, 0.95), 
              rgba(240, 250, 255, 0.9), 
              rgba(255, 245, 250, 0.9), 
              rgba(245, 255, 250, 0.9));
  background-size: 300% 300%;
  animation: hologramEffect 6s infinite alternate ease-in-out;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  color: #2c3e50; /* màu chữ rõ hơn */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  backdrop-filter: blur(3px); /* hiệu ứng mờ nền nhẹ */
}

.about:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.about h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  color: var(--primary);
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 10px auto;
  background: var(--accent-color);
  border-radius: 3px;
  animation: fadeIn 1s ease-in-out;
}

.about h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d3b66;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about p {
  font-size: 1.1rem;
  font-family: "Merriweather", serif;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 18px;
  text-align: justify;
  text-indent: 18px;
}

.about ul {
  text-align: left;
  padding-left: 25px;
  margin-bottom: 20px;
}

.about ul li {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #2f2f2f;
}

.about ul li strong {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about {
    max-width: 90%;
    padding: 40px;
  }

  .about h2 {
    font-size: 1.8rem;
  }

  .about p {
    font-size: 1rem;
  }

  .about ul li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 30px;
    margin: 30px auto;
  }

  .about:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .about h2 {
    font-size: 1.6rem;
  }

  .about p {
    font-size: 0.95rem;
    text-indent: 10px;
  }

  .about ul {
    padding-left: 15px;
  }

  .about ul li {
    font-size: 0.95rem;
  }
}

/* Optional: add smooth fade-in if needed */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* General Styling for the Experience Section */
.section {
  margin: 50px auto;
  max-width: 1200px;
  padding: 20px;
  background: linear-gradient(135deg, 
              rgba(255, 255, 255, 0.9), /* Trắng nhạt */
              rgba(240, 250, 255, 0.8), /* Xanh pastel nhạt */
              rgba(255, 240, 250, 0.8), /* Hồng pastel nhạt */
              rgba(245, 255, 250, 0.8)); /* Vàng ánh xanh nhạt */
  background-size: 200% 200%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  animation: hologramEffect 4s infinite alternate ease-in-out;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary, #2C3E50);
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.6);
}

/* Collapsible Headers */
.collapsible {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--primary, #2C3E50), var(--secondary, #34495E));
  color: var(--white, #FFFFFF);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.collapsible:hover {
  background: linear-gradient(135deg, var(--accent, #E74C3C), var(--secondary, #34495E));
  color: var(--white, #FFFFFF);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.collapsible i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.collapsible.open i {
  transform: rotate(180deg);
}

/* Content Section */
.content {
  display: none;
  padding: 20px;
  background: var(--light, #ECF0F1);
  border-left: 4px solid var(--accent, #E74C3C);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text-main, #2C3E50);
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.content.expanded {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.content ul {
  padding-left: 20px;
  list-style-type: disc;
}

.content p,
.content ul li {
  margin-bottom: 10px;
}

.content strong {
  color: var(--primary, #2C3E50);
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styling */
.footer {
  background: var(--footer-bg);
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--footer-text);
}

/* Social Icons Styling */
.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer .social-icons a {
  font-size: 2rem;
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--light);
  transition: transform 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: socialIconPulse 1.5s infinite alternate ease-in-out;
}

.footer .social-icons a:hover {
  transform: scale(1.2) rotate(10deg); /* Added slight rotation for enhanced effect */
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@keyframes socialIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--footer-text);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .footer-content {
    gap: 10px;
  }

  .footer .social-icons a {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .footer .footer-content {
    gap: 5px;
  }

  .footer .social-icons a {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }
}
.download-button {
  text-align: center;
  margin: 20px 0;
}

#download-btn {
  background-color: #007bff; /* Màu xanh nhấn */
  color: white; /* Màu chữ trắng */
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#download-btn:hover {
  background-color: #0056b3; /* Màu xanh đậm hơn khi hover */
  transform: scale(1.05); /* Phóng to nhẹ khi hover */
}

/* Certificates Section */
#resume .certificates {
  margin: 20px 0;
  padding: 10px; /* Thêm khoảng cách cho toàn bộ phần */
  background-color: #f9f9f9; /* Nền nhẹ để tạo sự phân biệt */
  border: 1px solid #eee; /* Viền nhẹ */
  border-radius: 8px; /* Bo góc phần toàn bộ */
}

/* Certificate List Container */
#resume .certificate-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Tăng khoảng cách giữa các mục */
  justify-content: space-around; /* Căn chỉnh đều các mục */
}

/* Individual Certificate Item */
#resume .certificate-item {
  flex: 1 1 calc(30% - 20px); /* Điều chỉnh kích thước theo màn hình */
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px; /* Bo góc mềm mại hơn */
  padding: 15px; /* Tăng khoảng cách bên trong */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hiệu ứng đổ bóng rõ hơn */
  background-color: #fff; /* Nền trắng cho mục */
  transition: transform 0.3s, box-shadow 0.3s; /* Hiệu ứng khi hover */
}

#resume .certificate-item:hover {
  transform: translateY(-5px); /* Hiệu ứng nổi lên khi hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Đổ bóng mạnh hơn */
  border-color: #aaa; /* Viền đậm hơn khi hover */
}

/* Certificate Image - Fix Size */
#resume .certificate-item img {
  width: 100px; /* Đặt chiều rộng cố định */
  height: 100px; /* Đặt chiều cao cố định */
  object-fit: contain; /* Đảm bảo giữ nguyên tỉ lệ ảnh */
  margin: 0 auto 12px; /* Căn giữa hình ảnh và thêm khoảng cách dưới */
  display: block; /* Đảm bảo hình ảnh là block */
  border-radius: 6px; /* Bo góc nhẹ cho ảnh */
  border: 1px solid #ccc; /* Thêm viền ảnh */
  background-color: #fff; /* Thêm nền trắng nếu ảnh trong suốt */
}

/* Certificate Description */
#resume .certificate-item p {
  margin: 6px 0; /* Tăng khoảng cách giữa các đoạn văn */
  font-size: 15px; /* Tăng kích thước chữ */
  line-height: 1.5; /* Tăng khoảng cách dòng */
  color: #333; /* Màu chữ tối hơn */
}

/* Responsive Design */
@media (max-width: 768px) {
  #resume .certificate-item {
    flex: 1 1 calc(45% - 20px); /* Chuyển sang 2 cột trên màn hình nhỏ hơn */
  }
}

@media (max-width: 480px) {
  #resume .certificate-item {
    flex: 1 1 100%; /* Chuyển sang 1 cột trên màn hình rất nhỏ */
  }

  #resume .certificate-list {
    gap: 15px; /* Giảm khoảng cách giữa các mục */
  }
}


/* Experience Section */
#resume .experience-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo Container */
#resume .experience-logo {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden; /* Đảm bảo ảnh không bị tràn */
}

/* Logo Image */
#resume .experience-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Duy trì tỷ lệ gốc */
}

/* Information Container */
#resume .experience-info {
  display: flex;
  flex-direction: column;
}

/* Title Styling */
#resume .experience-title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

/* Company Name Styling */
#resume .experience-company {
  font-size: 18px;
  color: #fff;
  margin-top: 5px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
  #resume .experience-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #resume .experience-info {
    margin-top: 8px;
  }
}
/* Hiển thị nội dung bị ẩn khi xuất PDF */
@media print {
  .collapsible + .content {
    max-height: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  img {
    page-break-inside: avoid !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
  }

  .section {
    page-break-before: always !important;
    page-break-inside: avoid !important;
  }

  .pdf-footer {
    page-break-after: always !important;
  }

  h1, h2, h3, p {
    page-break-after: avoid !important;
  }
}

/* Tối ưu hóa PDF */
.pdf-export {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 15px;
  background: #ffffff !important;
  color: #000 !important;
  font-family: Arial, sans-serif;
  box-shadow: none !important;
  border: 1px solid #ddd !important;
  animation: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.pdf-export .section {
  margin-bottom: 15px;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.pdf-export h1, .pdf-export h2, .pdf-export h3 {
  color: #333;
  margin-bottom: 8px;
  page-break-after: avoid !important;
}

.pdf-export img {
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block !important;
  margin: 0 auto !important;
  border: 1px solid #ccc !important;
  page-break-inside: avoid !important;
}

.pdf-export .content {
  overflow: visible !important;
  padding: 8px !important;
}

.pdf-export .pdf-footer {
  text-align: center !important;
  font-size: 12px !important;
  color: #555 !important;
  margin-top: 15px !important;
  border-top: 1px solid #ddd !important;
  padding-top: 8px !important;
}

.pdf-export .page-break {
  page-break-before: always !important;
}
