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

body {
  font-family: 'Inter', sans-serif;
  background-color: #F6F5F3;
  color: #1A1A33;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.analiz-body {
  overflow: auto;
  height: auto;
}

.page-wrapper.analiz-page {
  height: auto;
  flex: 1;
}

/* Filter Input */
.analiz-filter-container {
  background-color: #F6F5F3;
  border-color: #00D37E;
  max-width: 100%;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.analiz-search-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid #00D37E;
  border-radius: 12px;
  background-color: #F6F5F3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, border-color 0.3s;
  font-family: var(--font-family);
}

.analiz-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 211, 126, 0.1);
}


.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-box {
  background: rgba(246, 245, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 211, 126, 0.12);
  border-radius: 0 0 20px 20px;
  padding: 0.875rem 0;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  position: relative;
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.header-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00D37E 50%, transparent 100%);
  border-radius: 2px;
  animation: slideInOut 2s ease-in-out 0.5s;
}

@keyframes slideInOut {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    width: 200px;
    opacity: 1;
  }
  50% {
    width: 170px;
    opacity: 1;
  }
  70% {
    width: 200px;
    opacity: 1;
  }
  100% {
    width: 170px;
    opacity: 1;
  }
}

.menu-underline {
  display: none;
}

.left {
  display: flex;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 211, 126, 0.1));
}

.logo:hover {
  transform: scale(1.05) translateY(-1px);
  filter: drop-shadow(0 4px 8px rgba(0, 211, 126, 0.15));
}

.menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #1A1A33;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.4rem 0;
  display: inline-block;
  letter-spacing: 0.2px;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00D37E;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu a:hover {
  color: #00D37E;
}

.menu a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: linear-gradient(135deg, #00D37E 0%, #01b66e 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 211, 126, 0.2);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 211, 126, 0.3);
}

.btn.dark {
  background: linear-gradient(135deg, #1A1A33 0%, #26273D 100%);
  color: #F6F5F3;
  box-shadow: 0 2px 8px rgba(26, 26, 51, 0.15);
}

.btn.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 26, 51, 0.25);
}

.menu a.btn {
  padding: 0.65rem 1.4rem;
}

.menu a.btn::after {
  display: none;
}

/* HERO SECTION */
.hero {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 3rem 2rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto; /* ❌ artık 100vh değil */
}



.slogan {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.highlight {
  color: #00D37E;
}

.subtext {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .slogan {
    font-size: 3rem;
  }

  .container {
    padding: 1.5rem 4rem;
  }
}

/* TICKER BACKGROUND ANIMATION */
.ticker-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.ticker-row {
  white-space: nowrap;
  display: flex;
  gap: 3rem;
  font-size: 1rem;
  color: #1A1A33;
  opacity: 0.08;
  animation: ticker-left 60s linear infinite;
}

.ticker-row.reverse {
  animation: ticker-right 90s linear infinite;
  margin-top: 2rem;
}

.ticker-row span {
  flex-shrink: 0;
  padding: 0 1rem;
}

#floatCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1.5;
  pointer-events: none;
}

.ticker-row.vertical {
  position: absolute;
  top: 100%; /* başta ekranın hemen dışında */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  opacity: 0.08;
  animation: vertical-scroll 30s linear infinite;
  color: #1A1A33;
  font-size: 0.9rem;
  white-space: nowrap;
}

@keyframes vertical-scroll {
  0% { top: 100%; }
  100% { top: -20%; }
}

/* Keyframes */
@keyframes ticker-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes ticker-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* slogan animasyon */
.slogan-floating {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 0.9; /* azaltıldı */
  margin-bottom: 2rem;
  animation: floatText 6s ease-in-out infinite;
}


.line1 {
  color: #00D37E;
  display: block;
}

.line2 {
      margin: 0;
  padding: 0;
  color: #26273D;
  display: block;
}

/* Soft floating animation */
@keyframes floatText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .slogan-floating {
    font-size: 3.4rem;
  }
}

/* footer */
.footer {
  padding: 2.5rem 1.5rem;
  background-color: transparent;
  font-size: 0.875rem;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-top: auto;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-top: 1.5rem;
}

.footer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 211, 126, 0.3) 50%, transparent 100%);
}

.copyright {
  color: #888;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer a {
  color: #666;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.2px;
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00D37E;
  transition: width 0.3s ease;
}

.footer a:hover {
  color: #00D37E;
}

.footer a:hover::after {
  width: 100%;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem;
  }

  .footer-container {
    gap: 0.875rem;
    padding-top: 1.25rem;
  }

  .footer-container::before {
    width: 120px;
  }

  .copyright {
    font-size: 0.8rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1.25rem;
  }

  .footer-container {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .footer-container::before {
    width: 100px;
  }

  .copyright {
    font-size: 0.75rem;
  }

  .footer-links {
    gap: 1.25rem;
    flex-direction: column;
  }

  .footer a {
    font-size: 0.75rem;
  }
}

/* MODAL BACKDROP */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 51, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 1rem;
  transition: background-color 0.3s ease-out, backdrop-filter 0.3s ease-out;
}

.modal.show {
  display: flex;
  background-color: rgba(26, 26, 51, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* MODAL BOX */
.modal-content {
  background-color: #fff;
  color: #1A1A33;
  padding: 2.5rem;
  border-radius: 28px;
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(0, 211, 126, 0.1);
  position: relative;
  text-align: left;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: auto;
}

.modal.show .modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #00D37E 50%, transparent 100%);
  border-radius: 0 0 4px 4px;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #00D37E;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #01b66e;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #888;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  border: none;
  padding: 0;
}

.close-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #00D37E 0%, #01b66e 100%);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 211, 126, 0.3);
}

.close-btn:active {
  transform: rotate(90deg) scale(0.95);
}

/* MODAL HEADINGS */
.modal-content h2 {
  font-size: 1.875rem;
  margin: 0 0 1.75rem 0;
  color: #1A1A33;
  font-weight: 700;
  padding-right: 3.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #1A1A33 0%, #353650 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.modal-content h3 {
  font-size: 1.4rem;
  margin: 2.25rem 0 1.25rem 0;
  color: #1A1A33;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.modal-content h3:first-of-type {
  margin-top: 0;
}

/* MODAL PARAGRAPHS */
.modal-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #353650;
  margin-bottom: 1.5rem;
}

.modal-content p:last-child {
  margin-bottom: 0;
}

.modal-content p strong {
  color: #1A1A33;
  font-weight: 600;
}

.modal-content p em {
  color: #666;
  font-style: italic;
  font-weight: 500;
}

/* MODAL LISTS */
.modal-content ul {
  margin: 1.75rem 0;
  padding-left: 0;
  list-style: none;
}

.modal-content ul li {
  font-size: 1.05rem;
  margin-bottom: 1.125rem;
  padding-left: 2rem;
  position: relative;
  color: #353650;
  line-height: 1.7;
}

.modal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00D37E;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  top: 0;
}

.modal-content ul li:last-child {
  margin-bottom: 0;
}

/* MODAL HR */
.modal-content hr {
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  margin: 2.5rem 0;
  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .modal {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: 1.5rem;
  }

  .modal.show {
    background-color: rgba(26, 26, 51, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .modal-content {
    padding: 2rem 1.75rem;
    border-radius: 24px;
    max-height: 88vh;
    width: 95%;
    margin-top: 0;
  }

  .modal-content::before {
    width: 120px;
    height: 3px;
  }

  .modal-content h2 {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
    padding-right: 3rem;
    line-height: 1.3;
  }

  .modal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
  }

  .modal-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .modal-content ul li {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    line-height: 1.65;
  }

  .modal-content hr {
    margin: 2rem 0;
  }

  .close-btn {
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 0.5rem;
    padding-top: 1rem;
    align-items: flex-start;
  }

  .modal.show {
    background-color: rgba(26, 26, 51, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .modal-content {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    width: 100%;
    max-height: 92vh;
    margin: 0.5rem 0;
  }

  .modal-content::before {
    width: 100px;
    height: 3px;
  }

  .modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding-right: 2.75rem;
    line-height: 1.3;
  }

  .modal-content h3 {
    font-size: 1.2rem;
    margin: 1.75rem 0 1rem 0;
    line-height: 1.4;
  }

  .modal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.125rem;
  }

  .modal-content ul li {
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
    padding-left: 1.5rem;
    line-height: 1.65;
  }

  .modal-content hr {
    margin: 1.75rem 0;
  }

  .close-btn {
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }
}


.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 26px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  padding: 6px 0;
  user-select: none;
  transition: all 0.3s ease;
}

.burger span {
  display: block;
  width: 100%;
  height: 3.5px;
  background: #1A1A33;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.burger:hover {
  transform: scale(1.1);
}

.burger:hover span {
  background: #00D37E;
  box-shadow: 0 2px 4px rgba(0, 211, 126, 0.3);
}

.burger.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.burger.open span {
  background: #00D37E;
  box-shadow: 0 2px 4px rgba(0, 211, 126, 0.3);
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .header-box {
    border-radius: 0 0 18px 18px;
    padding: 0.75rem 0;
  }

  .navbar {
    padding: 0;
  }

  .logo {
    height: 42px;
  }

  .burger {
    display: flex;
    width: 36px;
    height: 30px;
  }

  .burger span {
    height: 4px;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }

  /* Mobile Menu Overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 26, 51, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-overlay.show {
    display: block;
    opacity: 1;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 0;
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #00D37E;
    gap: 0;
    overflow-y: auto;
  }

  .menu.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
  }

  /* Menu Header */
  .menu::before {
    content: '';
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #F6F5F3 0%, #ffffff 100%);
    border-bottom: 2px solid rgba(0, 211, 126, 0.15);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .menu a {
    color: #1A1A33;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1.25rem 1.75rem;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .menu a:first-of-type {
    margin-top: 80px;
  }

  .menu a::after {
    display: none;
  }

  .menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, #00D37E 0%, #01b66e 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 4px 4px 0;
  }

  .menu a:hover,
  .menu a:active {
    background: linear-gradient(90deg, rgba(0, 211, 126, 0.1) 0%, rgba(0, 211, 126, 0.05) 100%);
    color: #00D37E;
    padding-left: 2.25rem;
    transform: translateX(4px);
  }

  .menu a:hover::before,
  .menu a:active::before {
    width: 5px;
  }

  .menu a.btn {
    margin: 1.75rem 1.75rem 2rem 1.75rem;
    text-align: center;
    background: linear-gradient(135deg, #00D37E 0%, #01b66e 100%);
    color: white;
    padding: 1.125rem 1.75rem;
    border-radius: 14px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 211, 126, 0.35);
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  .menu a.btn:hover,
  .menu a.btn:active {
    background: linear-gradient(135deg, #01b66e 0%, #00D37E 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(0, 211, 126, 0.45);
    padding-left: 1.75rem;
  }

  .menu a.btn::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .header-box {
    padding: 0.625rem 0;
  }

  .logo {
    height: 38px;
  }

  .burger {
    width: 34px;
    height: 28px;
  }

  .burger span {
    height: 3.5px;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .menu {
    width: 100%;
    max-width: 100vw;
    border-left: none;
    border-top: 4px solid #00D37E;
  }

  .menu::before {
    height: 70px;
  }

  .menu a:first-of-type {
    margin-top: 70px;
  }

  .menu a {
    font-size: 1rem;
    padding: 1.125rem 1.5rem;
  }

  .menu a:hover,
  .menu a:active {
    padding-left: 2rem;
  }

  .menu a.btn {
    margin: 1.5rem 1.5rem 2rem 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Show More Button */
.show-more-wrapper {
  text-align: center;
  margin: 40px 0 60px;
}

#showMoreBtn {
  background-color: #00D37E;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

#showMoreBtn:hover {
  background-color: #1A1A33;
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

