/* =============================
   🌞 Light Mode (Default)
============================= */

/* Reset & Global */
body {
  font-family: sans-serif;
  margin: 0;
  background-color: #edf6fc;
  min-height: 100vh;
  padding: 100px 70px 50px;
  color: #000; /* light mode text */
}


@media (max-width: 768px) {
  body {
    padding: 100px 10px 50px;
  }
}

/* ✅ notice borad */
  .updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    padding: 10px 0;
  }

  .update-card {
    background: #f9f9f9;
    color: #333;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
  }

  .update-card:hover {
    transform: translateY(-2px);
  }

  .update-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .update-card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .update-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

.see-all-btn {
  display: block;
  margin: 1rem auto;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background: #077A7D;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  width: max-content;
  cursor: pointer;
  text-align: center;
}

.see-all-btn:hover {
  background: #046164;
}


  /* ✅ Dark mode support */
  html.dark-mode .update-card {
    background: #1f1f1f;
    color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
  }

  html.dark-mode .see-all-btn {
    background: #444;
    color: #fff;
  }

  html.dark-mode .see-all-btn:hover {
    background: #222;
  }

  html.dark-mode .update-heading {
    color: #fff;
  }

  /* ✅ Mobile tweaks */
  @media (max-width: 480px) {
    .update-card {
      margin-left: 15px;
      margin-right: 15px;}
    .update-card h3 {
      font-size: 1rem;
    }
    .update-card p {
      font-size: 0.9rem;
    }
    .update-heading {
      font-size: 1.25rem;
    }
  }






.app-container {
  background: #fff;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none !important;
  text-align: center;
  max-width: 400px;
}

.download-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.appbtn {
  position: relative;
  padding: 12px 45px 12px 25px; /* Right padding increased for percentage */
  background-color: #077A7D;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.btn-text {
  display: inline-block;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  width: 0%;
  transition: width 0.3s ease;
}
.progress-percent {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  z-index: 2;
  color: white;
  display: none; 
}


.appbtn:hover {
  background-color: #066264;
}

.download-note {
  background-color: #e0f4e0;
  color: #2e7d32;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
  display: inline-block;
}

.install-btn {
  padding: 12px 25px;
  background-color: #077A7D;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  display: none;
}

.install-btn:hover {
  background-color: #046164;

}

/* Dark mode styles */
html.dark-mode .app-container {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e0e0e0;
}

html.dark-mode .download-note {
  background-color: #1b3f1b !important;
  color: #fff;
}

@media (max-width: 600px) {
  .app-container {
  margin-left: 15px;
  margin-right: 15px;


  }
}

/* ===== Popup/Modal base ===== */
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;               /* hidden by default */
  align-items: center;
  justify-content: center;
}
.app-modal.show {
  display: flex;
}
.app-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
}
.app-modal-dialog {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 480px;            /* app-container এর 400px-কে একটু breathing space দিচ্ছি */
  animation: app-pop-in 180ms ease-out;
}

/* Close (×) button */
.app-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.app-modal-close:hover { transform: scale(1.06); }

/* Pop animation */
@keyframes app-pop-in {
  from { transform: translateY(8px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* Dark mode tweaks */
html.dark-mode .app-modal-backdrop { background: rgba(0,0,0,0.6); }
html.dark-mode .app-modal-close { background: #0b1220; color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.6); }

/* মোবাইলে একটু টপ/বটম গ্যাপ */
@media (max-width: 600px) {
  .app-modal-dialog { max-width: 92vw; }
}




/* Namaj Section */
.namaj-box {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);

}

.namaj-content {
  display: flex;
  justify-content: space-between;
  background: #fff;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none !important;
    margin-left: 40px;
  margin-right: 40px;
}



.left-box {
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.left-box h2,
.left-box h3 {
  color: #077A7D;
  font-size: 18px;
  margin-bottom: 5px;
}

.left-box p.date-line {
  font-size: 14px;
  margin: 4px 0;
  color: #f1f5f9;
}

#location {
  font-size: 14px;
  color: #555;
}

.date-box {
  background: #1e293b;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px #077A7D;
}

.date-name {
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 10px;
  color: #077A7D;
  margin-bottom: 30px;
}

.date-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #077A7D;
  border-radius: 5px;
}

.right-box {
  flex: 1;
}

.right-box p {
  margin: 8px 0;
  padding: 8px 10px;
  background: #077A7D;
  border-radius: 6px;
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 600px) {
  .namaj-box {
    padding: 12px;
    border-radius: 10px;


  }

  .namaj-content {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px;
    gap: 8px;
    justify-content: space-between;
    margin-left: 0px;
    margin-right: 0px;
  }

  .left-box,
  .right-box {
    width: 48%;
  }

  .left-box h2 {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .left-box h3 {
    font-size: 14px;
    margin-bottom: 6px !important;
  }
  .left-box p.date-line {
    font-size: 11px;
    margin: 0px 0;
  }

  #location {
    font-size: 11px;
    margin-top: 1px;
  }

  .left-box p {
    margin: 3px 0;  /* vertical spacing কমানো */
    line-height: 1.2;
  }

  .right-box p {
    font-size: 12px;
    padding: 8px 6px;
    margin: 4px 10px;
  }

  .date-box {
    padding: 12px;
    border-radius: 8px;
  }

  .date-name {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

html.dark-mode .namaj-content{
  background-color: #1e293b;
border: 1px solid rgba(255, 255, 255, 0.15);}

html.dark-mode .left-box h3, .left-box h2 {
  color: #fff !important;}



/* Help Catagorys */
.help-container {
  background: #fff;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none !important;
  text-align: center;
  margin-left: 18px;
  margin-right: 18px;
}
.category-section {
  padding: 20px;
  position: relative;  /* অ্যারো absolute জন্য relative */
  max-width: 1000px;
  margin: auto;

  
}

.category-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
}

.category-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* Scrollbar hide desktop/mobile */
.category-slider::-webkit-scrollbar {
  display: none;
}
.category-slider {
  -ms-overflow-style: none; /* IE, Edge */
  scrollbar-width: none; /* Firefox */
}

.category-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
}

.category-box {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.category-label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
  text-align: center;
  max-width: 100px;
  word-break: break-word;
}

/* Gradient backgrounds */
.box1 {
  background: linear-gradient(to bottom right, #ff6a6a, #ff9999);
}
.box2 {
  background: linear-gradient(to bottom right, #6a5aff, #a6a1ff);
}
.box3 {
  background: linear-gradient(to bottom right, #4caf50, #81c784);
}
.box4 {
  background: linear-gradient(to bottom right, #ffa726, #ffd180);
}
.box5 {
  background: linear-gradient(to bottom right, #26c6da, #80deea);
}
.box6 {
  background: linear-gradient(to bottom right, #ab47bc, #ce93d8);
}
.box7 {
  background: linear-gradient(to bottom right, #ec407a, #f48fb1);
}
.box8 {
  background: linear-gradient(to bottom right, #78909c, #b0bec5);
}
.box9 {
  background: linear-gradient(to bottom right, #fdd835, #fff176);
}
.box10 {
  background: linear-gradient(to bottom right, #8bc34a, #aed581);
}
.box11 {
  background: linear-gradient(to bottom right, #ff7043, #ffab91);
}
.box12 {
  background: linear-gradient(to bottom right, #00e676, #69f0ae);
}

@media (max-width: 600px) {
  .category-section {
  padding: 20px;
  position: relative;
  max-width: 75%;
  margin: auto;
}
  .category-box {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  .category-label {
    font-size: 12px;
  }
}


html.dark-mode .category-title,
html.dark-mode .category-label {
  color: #ddd;
}

html.dark-mode .help-container {
  background: #1e293b;}

/* Add this to your existing CSS */
html.dark-mode .category-section {
  background: transparent !important;
}

html.dark-mode .category-slider {
  background: transparent !important;
  --scrollbar-bg: transparent !important;
}

html.dark-mode .category-item {
  background: transparent !important;
}

html.dark-mode .category-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid transparent; /* Helps contain gradients */
}

html.dark-mode .category-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: inherit;
  border-radius: inherit;
}

/* Arrows - Outside the slider */
.slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #077A7D;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: background-color 0.3s ease;
  z-index: 100;
}

.slider-arrow:hover {
  background-color: #066264;
}

.arrow-left {
  left: -40px;
}

.arrow-right {
  right: -40px;
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
  .arrow-left {
    left: -18px;
  }
  .arrow-right {
    right: -18px;
  }
}




/* Sortcut */
.sort-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}


.sort-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.sort-title-name {
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 10px;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
}

.sort-title-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #077A7D;
  border-radius: 2px;
}

.sort-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sort-container a {
  text-decoration: none;
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: background 0.3s, transform 0.2s;
}

.sort-box:hover {
  background: #f0f0f0;
}

.icon {
  font-size: 20px;
  color: #077A7D;
}

.sort-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;       
  overflow: hidden;           
  text-overflow: ellipsis;    
  flex: 1;
}

/* Dark mode support */
html.dark-mode body {
  background: #121212;
  color: #eee;
}

html.dark-mode .sort-box {
  background: #1f1f1f;
}

html.dark-mode .sort-title-name,
html.dark-mode .sort-title {
  color: #eee;
}

html.dark-mode .icon {
  color: #077A7D;
}

html.dark-mode .sort-box:hover {
  background: #2a2a2a;
}

@media (max-width: 768px) {
.sort-container {
  
  grid-template-columns: repeat(2, 1fr);
 }
.sort-title {
  font-size: 12px !important;
  font-weight: bold;
  text-align: left;
  margin: 0;
}
.sort-title-name {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 4px;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
}

.sort-title-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
}
}



/* category-grid: গ্রিড হিসেবেই রাখব, ২ কলাম ডেস্কটপে */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cat-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
  text-align: left;
  margin-left: 50px;
}

.cat-title-name {
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 10px;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
}

.cat-title-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #077A7D;
  border-radius: 2px;
}


.main-section {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 15px;
}

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

/* Box styling */
.clickable-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 150px;
  padding: 20px 15px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
}

/* Dark mode styles for clickable box */
html.dark-mode .clickable-box {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #ddd;
}

/* Hover effect */
.clickable-box:hover {
  box-shadow: 0 4px 12px rgba(135, 206, 250, 0.6);
  transform: translateY(-3px);
}

/* Icon inside box */
.box-icon {
  font-size: 40px;
  color: #077A7D;
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* Dark mode icon color */
html.dark-mode .box-icon {
  color: #077A7D;
}

/* Text with ellipsis */
.clickable-box span.text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  display: block;
}

/* Link cleanup */
.box-link {
  text-decoration: none !important;
}

.box-link .clickable-box {
  text-decoration: none !important;
}

.box-link:hover,
.box-link:focus {
  text-decoration: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .main-section {
  margin-top: 20px;
  margin-bottom: 20px;
}
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .clickable-box {
    height: 100px;
    padding: 12px 10px;
  }
  .box-text {
    font-size: 12px;
    
  }
  .cat-title {
  font-size: 18px !important;
  font-weight: bold;
  margin-bottom: 6px;
  text-align: left;
  margin-left: 0px;
}
.cat-title-name {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 4px;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
}

.cat-title-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
}
  .box-icon {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .clickable-box span.text {
    font-size: 14px;
  }
}

html.dark-mode body{
  background: #121212;
  color: #e0e0e0;
}



/* =============================
   🌙 Dark Mode (html.dark-mode)
============================= */

html.dark-mode body {
  background: #000 !important;
  color: #f1f5f9 !important;
}

html.dark-mode .search-container input {
  flex-grow: 1;
  background-color: #1e293b;
  color: #a5d6a7;
  padding: 12px 15px;
  font-size: 16px;
  outline: none;
  border: 1px solid #1e293b;
}
html.dark-mode .search-popup {
  background-color: #1e293b; color: #fff;
}


html.dark-mode .namaj-box,
html.dark-mode .date-box {
  background: #0f172a;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
}

html.dark-mode .left-box h2,
html.dark-mode .left-box h3 {
  color: #077A7D;
}

html.dark-mode .date-name {
  color: #077A7D;
}

html.dark-mode .date-name::after {
  background-color: #077A7D;
}

html.dark-mode .left-box p.date-line,
html.dark-mode #location {
  color: #ffffff;
}

html.dark-mode .right-box p {
  background: #334155;
  color: #bef264;
}

html.dark-mode .clickable-box {
  background: #1e293b;
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .clickable-box:hover {
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.5);
}

html.dark-mode .category-item {
  background: #1e293b;
  color: #f1f5f9;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.05);
}

html.dark-mode .category-icon {
  color: #077A7D;
}

html.dark-mode .cat-title-name {
  color: #ffffff;
}

html.dark-mode .cat-title-name::after {
  background-color: #077A7D;
}

html.dark-mode .category-desc {
  color: #cbd5e1;
}

html.dark-mode a {
  color: inherit;
}

/* Inputs / Buttons / Results */
html.dark-mode input[type="date"] {
  background: #1e293b;
  border: 1px solid #077A7D;
  color: #cbd5e1;
}

html.dark-mode button {
  background: #077A7D;
  color: white;
  border: none;
}

html.dark-mode button:hover {
  background: #066264;
}

html.dark-mode #result {
  color: #93fdc3;
}




 /* ✅ Fixed CSS */
  .download-section {
    text-align: center;
    padding: 40px 20px;
    background: #f2f2f2;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .download-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    /* These make it completely non-interactive */
    cursor: default;
    pointer-events: none;
    user-select: none;
  }

  .app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .store-btn {
  
    align-items: center;
    gap: 10px;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .store-btn.playstore {
    background: #3ddc84;
  }

  .store-btn.applestore {
    background: #000;
  }

  .store-btn:hover {
    opacity: 0.85;
  }

  .store-btn i {
    font-size: 22px;
  }

  /* Dark mode */
  html.dark-mode .download-section {
    background: #1e1e1e;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  html.dark-mode .download-title {
    color: white;
  }


/* Responsive */
@media (max-width: 768px) {
  .download-section {
  margin-left: 14px;
  margin-right: 14px;
 }
 .download-title {
  font-size: 24px;}
}






/* Social Icon */
   .social-container {
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 20px;
      flex-wrap: wrap;
      margin-bottom: -10px;
    }
.share-title {
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: -5px !important;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}
    .social-container a {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ccc;
      border-radius: 10px;
      text-decoration: none;
      font-size: 20px;
      color: #333;
      transition: 0.3s ease;
      background: none;
    }

    .social-container a:hover {
      border-color: #077A7D;
      color: #077A7D;
    }

    /* Dark Mode */
    html.dark-mode body {
      background-color: #121212;
      color: #e0e0e0;
    }

    html.dark-mode .social-container {
      background-color: #1e1e1e;
    }

    html.dark-mode .social-container a {
      border-color: #444;
      color: #ccc;
    }

    html.dark-mode .social-container a:hover {
      border-color: #077A7D;
      color: #077A7D;
    }
    html.dark-mode .share-title {
  color: #e0e0e0;
}

    /* Responsive */
    @media (max-width: 600px) {
      .social-container {
        gap: 12px;
      }

      .social-container a {
        width: 44px;
        height: 44px;
        font-size: 18px;
      }

      .share-title {
        margin-top: 30px;
      font-size: 24px;}
      
    }