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

body, .widget, .info-bar, .footer, .content-card, .forum-post, .modal-box, .welcome-box, .link-btn, .btn-overlay, .stat-row-premium, .project-row-premium, .image-card {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body {
  background-color: #f0f2f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  overflow-x: hidden;
}

body.dark-mode {
  background-color: #121212 !important;
  color: #ffffff !important;
}

body.dark-mode * {
  color: #ffffff;
}

body.dark-mode a {
  color: #82b1ff;
}

body.dark-mode [style*="color: #555"],
body.dark-mode [style*="color:#555"],
body.dark-mode [style*="color: #666"],
body.dark-mode [style*="color:#666"],
body.dark-mode [style*="color: #444"],
body.dark-mode [style*="color:#444"] {
  color: #e0e0e0 !important;
}

body.dark-mode [style*="color: #D32F2F"],
body.dark-mode [style*="color:#D32F2F"],
body.dark-mode [style*="color: red"],
body.dark-mode [style*="color:red"],
body.dark-mode .forum-link,
body.dark-mode .warning-card .card-title,
body.dark-mode .red-text,
body.dark-mode .text-danger {
  color: #ff8a80 !important;
}

body.dark-mode .project-badge {
  background-color: #1e3a5f !important;
  color: #90caf9 !important;
  border: 1px solid #2b5278 !important;
}

body.dark-mode .beta-badge {
  background-color: #2b5278 !important;
  color: #ffffff !important;
}

body.dark-mode .widget,
body.dark-mode .modal-box,
body.dark-mode .welcome-box,
body.dark-mode .footer {
  background-color: #1e1e1e !important;
  border-color: #333 !important;
  color: #ffffff !important;
}

body.dark-mode .info-bar {
  background-color: #1e1e1e !important;
  border-bottom-color: #333 !important;
}

body.dark-mode .clock-section {
  color: #ffffff !important;
  border-right-color: #555 !important;
}

body.dark-mode .ticker-text {
  color: #90caf9 !important;
}

body.dark-mode .menu-list a, 
body.dark-mode .stat-label-p {
  color: #e0e0e0 !important;
}

body.dark-mode .menu-list a:hover {
  color: #90caf9 !important;
}

body.dark-mode .menu-list li {
  border-bottom-color: #444 !important;
}

body.dark-mode .link-btn {
  background: #2a2a2a !important;
  border-color: #444 !important;
  color: #ff8a80 !important;
}

body.dark-mode .stat-row-premium,
body.dark-mode .project-row-premium {
  background-color: #252525 !important;
  border-left-color: #90caf9 !important;
  color: #ffffff !important;
}

body.dark-mode .stat-row-premium:hover,
body.dark-mode .project-row-premium:hover {
  background-color: #2a2a2a !important;
}

body.dark-mode .stat-number-p {
  color: #90caf9 !important;
}

body.dark-mode .content-card,
body.dark-mode .image-card,
body.dark-mode .forum-post {
  background: #252525 !important;
  border-color: #383838 !important;
  color: #ffffff !important;
}

body.dark-mode .card-desc,
body.dark-mode .forum-post-content,
body.dark-mode .welcome-body,
body.dark-mode .search-res-desc {
  color: #e0e0e0 !important;
}

body.dark-mode .card-title,
body.dark-mode .forum-post-title,
body.dark-mode .search-res-title {
  color: #90caf9 !important;
}

body.dark-mode .footer h3,
body.dark-mode .footer p,
body.dark-mode .developer-section {
  color: #ffffff !important;
}

body.dark-mode .search-input-wrapper {
  background-color: #2a2a2a !important;
  border-color: #444 !important;
}

body.dark-mode .search-input-wrapper input {
  color: #ffffff !important;
  background: transparent !important;
}

body.dark-mode .btn-overlay {
  background: rgba(30, 30, 30, 0.9) !important;
  color: #ffffff !important;
  border-color: #90caf9 !important;
}

body.dark-mode .dropdown {
  background: #2a2a2a !important;
  color: #ffffff !important;
  border-color: #444 !important;
}

body.dark-mode .welcome-footer {
  background: #252525 !important;
  border-top-color: #333 !important;
}

body.dark-mode .btn-close-2h {
  background: #333 !important;
  color: #ffffff !important;
  border-color: #555 !important;
}

body.dark-mode .copy-btn {
  background: #333 !important;
  border-color: #555 !important;
  color: #ffffff !important;
}

body.dark-mode .forum-post-content::after {
  background: linear-gradient(180deg, rgba(37,37,37,0) 0%, rgba(37,37,37,1) 100%) !important;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode div,
body.dark-mode li,
body.dark-mode label {
  color: #ffffff !important;
}

body.dark-mode #scrollToBottomBtn,
body.dark-mode #backToTopBtn {
  background-color: #0d47a1;
  color: #ffffff;
}

body.dark-mode #scrollToBottomBtn:hover,
body.dark-mode #backToTopBtn:hover {
  background-color: #e53935;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  color: #ffffff;
  padding: 15px 20px;
  z-index: 999999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  animation: slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 300px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-cookie-accept {
  background: #1565C0;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: #0d47a1;
}

.btn-cookie-decline {
  background: #555;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-decline:hover {
  background: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.welcome-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.welcome-overlay.closing {
  animation: overlayFadeOut 0.3s ease forwards;
}

@keyframes overlayFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.welcome-box {
  background: white;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: popUpAnim 0.4s ease;
  will-change: transform, opacity;
}

.welcome-box.closing {
  animation: popDownAnim 0.3s ease forwards;
}

@keyframes popUpAnim {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes popDownAnim {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(0.85); opacity: 0; }
}

.welcome-header {
  background: #D32F2F;
  color: white;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  flex-shrink: 0;
}

.welcome-body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.welcome-body ul {
  margin-top: 10px;
  padding-left: 0 !important;
  list-style: none !important;
  list-style-type: none !important;
}

.welcome-body li {
  margin-bottom: 6px;
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
}

.blink-text {
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0.3; }
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #D32F2F;
  width: 0%;
  z-index: 99999;
  transition: width 0.1s ease;
}

body.dark-mode #progressBar {
  background: #ff6b6b !important;
}

.welcome-footer {
  padding: 12px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.btn-close-2h {
  background: #f1f3f5;
  color: #495057;
  border: 1px solid #ced4da;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-close-2h:hover {
  background: #ffebee;
  color: #D32F2F;
  border-color: #D32F2F;
  transform: translateY(-1px);
}

.btn-close-2h:active {
  transform: translateY(0);
}

.btn-close-welcome {
  background: #1565C0;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 3px 8px rgba(21, 101, 192, 0.25);
}

.btn-close-welcome:hover {
  background: #0d47a1;
  transform: translateY(-1px);
}

#toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#toast.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to { bottom: 0; opacity: 0; }
}

.banner-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 30vw;
  min-height: 140px;
  background: #e9ecef;
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.btn-overlay {
  position: absolute;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #1565C0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  z-index: 10;
}

.btn-overlay:hover {
  background: #1565C0;
  color: white;
}

#btnEmailTop { top: 10px; left: 10px; }
#btnLangTop { top: 50px; left: 10px; }
#btnSearchTop { top: 10px; right: 10px; }
#btnThemeTop { top: 50px; right: 10px; }

.info-bar {
  display: flex;
  align-items: center;
  background: white;
  border-top: 4px solid #D32F2F;
  border-bottom: 1px solid #ddd;
  height: 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.clock-section {
  padding: 0 15px;
  font-weight: bold;
  color: #333;
  border-right: 2px solid #D32F2F;
  white-space: nowrap;
  font-family: monospace;
  font-size: 16px;
}

.ticker-section {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-text {
  font-weight: bold;
  color: #1565C0;
  display: inline-block;
  animation: bounceText 8s linear infinite alternate;
  padding-left: 10px;
}

@keyframes bounceText {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw - 100% - 140px)); }
}

.container {
  max-width: 1000px;
  margin: 15px auto;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.sidebar {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-content {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e4e6eb;
}

.widget-header {
  background: #1565C0;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

.widget-header.warning-header {
  background: #D32F2F;
}

.widget-body {
  padding: 15px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  border-bottom: 1px dashed #ccc;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list a {
  display: block;
  padding: 10px 0;
  color: #333;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}

.menu-list a:hover {
  color: #1565C0;
  padding-left: 5px;
}

.dropdown {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
  outline: none;
  background: white;
}

.link-btn {
  display: block;
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  color: #D32F2F;
  text-align: center;
  transition: background 0.3s;
}

.link-btn:hover {
  background: #e2e6ea;
}

.stat-row-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background-color: #f9fbfd;
  border-radius: 4px;
  border-left: 3px solid #1565C0;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}

.stat-row-premium:last-child {
  margin-bottom: 0;
}

.stat-row-premium:hover {
  transform: translateX(4px);
  background-color: #f1f5f9;
  border-left-color: #d32f2f;
}

.stat-label-p {
  font-size: 14px;
  color: #444444;
  font-weight: 500;
}

.stat-number-p {
  font-size: 15px;
  font-weight: bold;
  color: #1565C0;
  transition: color 0.2s;
}

.stat-row-premium:hover .stat-number-p {
  color: #d32f2f;
}

.project-row-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  background-color: #f9fbfd;
  border-radius: 4px;
  border-left: 3px solid #1565C0;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.project-row-premium:last-child {
  margin-bottom: 0;
}

.project-row-premium:hover {
  transform: translateX(4px);
  background-color: #f1f5f9;
  border-left-color: #D32F2F;
  color: #1565C0;
}

.project-badge {
  font-size: 11px;
  background: #e3f2fd;
  color: #1565C0;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
}

.dot-online-status {
  width: 6px;
  height: 6px;
  background-color: #4ade80;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.dot-online-status::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4ade80;
  border-radius: 50%;
  animation: pulse-dot-anim 1.6s infinite ease-in-out;
  left: 0;
  top: 0;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 600px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  background: #fafafa;
  transition: transform 0.2s, box-shadow 0.2s;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-title {
  color: #1565C0;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}

.warning-card .card-title {
  color: #D32F2F;
}

.card-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.grid-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 600px) {
  .grid-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

.image-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.image-card:hover {
  transform: scale(1.02);
}

.image-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.modal-box {
  background: white;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  animation: slideDown 0.3s ease;
}

.modal-box.closing {
  animation: slideUp 0.25s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-15px); opacity: 0; }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}

.search-input-wrapper {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px 15px;
  margin-top: 15px;
  align-items: center;
}

.search-input-wrapper input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

#searchResults {
  margin-top: 15px;
  max-height: 200px;
  overflow-y: auto;
}

.search-res-item {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.search-res-item:last-child {
  border-bottom: none;
}

.search-res-title {
  font-weight: bold;
  color: #1565C0;
}

.search-res-desc {
  font-size: 12px;
  color: #666;
}

.copy-btn {
  background: #f0f0f0;
  border: 1px solid #ccc;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  margin-left: 10px;
  white-space: nowrap;
}

.copy-btn:hover {
  background: #e0e0e0;
}

.forum-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.beta-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.forum-link-wrap {
  text-align: center;
  margin-bottom: 15px;
}

.forum-link {
  color: #D32F2F;
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  display: inline-block;
  line-height: 1.4;
  animation: forumPulse 2.4s ease-in-out infinite;
}

@keyframes forumPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-1px); opacity: 0.85; }
}

.forum-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.forum-post {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.forum-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.forum-post-title {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 10px;
  word-break: break-word;
}

.forum-post-content {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  max-height: 48px;
  position: relative;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.forum-post-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: linear-gradient(180deg, rgba(250,250,250,0) 0%, rgba(250,250,250,1) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.forum-post-content.expanded::after {
  opacity: 0;
}

.read-more-btn {
  margin-top: 12px;
  border: none;
  background: #1565C0;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(21, 101, 192, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.read-more-btn:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(21, 101, 192, 0.35);
}

.read-more-btn:active {
  transform: translateY(0) scale(0.96);
}

.read-more-btn.expanded-btn {
  background: #D32F2F;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.25);
}

.read-more-btn.expanded-btn:hover {
  background: #b71c1c;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.35);
}

.read-more-btn .btn-icon {
  display: inline-block;
  font-size: 11px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.read-more-btn.expanded-btn .btn-icon {
  transform: rotate(180deg);
}

#scrollToBottomBtn {
  position: fixed;
  bottom: 110px;
  right: 10px;
  z-index: 9999;
  background-color: #1565C0;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToBottomBtn:hover {
  background-color: #D32F2F;
  transform: translateY(5px);
}

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 170px;
  right: 10px;
  z-index: 9999;
  background-color: #1565C0;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-items: center;
  justify-content: center;
}

#backToTopBtn:hover {
  background-color: #D32F2F;
  transform: translateY(-5px);
}

.footer {
  background: white;
  border-top: 2px solid #1565C0;
  padding: 20px 10px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer h3 {
  color: #111;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer p {
  color: #444;
  font-size: 14px;
  margin: 5px 0;
}

.developer-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}

.logo-small {
  height: 30px;
  width: auto;
  object-fit: contain;
}
