/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0f1a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
}

/* Animation Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-15deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  60% {
    opacity: 1;
    transform: translateY(20px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Class */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #0a0f1a;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.sticky {
  background-color: #1a2238;
  box-shadow: 0 2px 5px rgba(0, 255, 255, 0.2);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #00ffff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger .material-icons {
  font-size: 2rem;
}

.nav1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15rem;
  z-index: 1000;
}

.nav1.active {
  transform: translateX(0);
}

.nav1.active::before {
  opacity: 1;
  pointer-events: auto;
}

.nav1 .nav {
  display: flex;
  gap: 1.5rem;
}

.nav1 .nav a {
  text-decoration: none;
  color: #aaa;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav1 .nav a:hover {
  color: #00ffff;
}

.nav1 .act {
  display: flex;
  gap: 1rem;
}

.nav1 .act .btn {
  background: linear-gradient(90deg, #007bff, #00ffff);
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}

.nav1 .act .btn:hover {
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.acting {
  display: none;
  gap: 1rem;
}

.acting .btn {
  background: linear-gradient(90deg, #007bff, #00ffff);
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}

.acting .btn:hover {
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 3rem;
  background-color: #0a0f1a;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 600px;
  color: #ffffff;
}

.safety-text {
  font-size: 0.9rem;
  color: #00ffff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.highlight {
  color: #00bfff;
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.avatars {
  display: flex;
  margin-right: 1rem;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #0a0f1a;
}

.description p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.hero-image img {
  width: 400px;
  height: auto;
  object-fit: contain;
}

/* Marquee Section */
.marquee-section {
  background-color: #0a0f1a;
  padding: 2rem 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 255, 255, 0.05);
  border-bottom: 1px solid rgba(0, 255, 255, 0.05);
}

.marquee-title {
  font-size: 1rem;
  color: #00ffff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll-left 20s linear infinite;
  align-items: center;
}

.marquee-track img,
.marquee-track h5 {
  animation: none;
}

.marquee-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

.marquee-track h5 {
  display: flex;
  gap: 0.7rem;
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Features Section */
.features {
  background-color: #0a0f1a;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-box {
  background-color: #111827;
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.05);
}

.feature-box:hover {
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  transform: scale(1.1);
}

.feature-box span.material-icons {
  font-size: 36px;
  color: #00ffff;
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature-box p {
  font-size: 0.95rem;
  color: #bbb;
}

/* Crypto List */
.crypto-list {
  background-color: #0a0f1a;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.crypto-card {
  background-color: #111827;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.crypto-card:hover {
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  transform: scale(1.05);
}

.crypto-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.crypto-header img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.crypto-header h4 {
  margin: 0;
  color: #00bfff;
}

.symbol {
  font-size: 0.8rem;
  color: #aaa;
}

.crypto-price {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  font-weight: bold;
}

.crypto-price .growth {
  color: #00ffff;
}

.crypto-chart canvas {
  width: 100% !important;
  height: 60px !important;
}

.show-more {
  display: inline-block;
  margin-top: 2rem;
  color: #00ffff;
  text-decoration: none;
  border: 1px solid #00ffff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.show-more:hover {
  background-color: #00ffff;
  color: #0a0f1a;
}

/* Trusted Section */
.trusted-section {
  background-color: #0a0f1a;
  padding: 5rem 2rem;
  text-align: center;
  color: #ffffff;
}

.trusted-heading {
  font-size: 2.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.trusted-heading .highlight {
  color: #00ffff;
}

.trusted-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.trusted-card {
  background-color: #111827;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  text-align: left;
  position: relative;
}

.trusted-card:hover {
  background-color: #003347;
  border-color: #00ffff;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  transform: scale(1.05);
}

.trusted-card h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.trusted-card h3 span {
  color: #00bfff;
  margin-right: 0.4rem;
}

.trusted-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Platform Section */
.platform-section {
  background-color: #0a0f1a;
  padding: 5rem 2rem;
  color: #fff;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
}

.platform-graphic img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.platform-content {
  flex: 1;
  max-width: 600px;
}

.platform-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.platform-content .highlight {
  color: #00ffff;
}

.platform-content .bold {
  font-weight: 700;
  color: #ffffff;
}

.platform-stars {
  margin: 1rem 0 1.5rem;
}

.platform-stars .material-icons {
  font-size: 24px;
  color: #00ffff;
  margin-right: 4px;
}

.platform-content p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.platform-content .em {
  color: #00ffff;
  font-weight: 600;
}

.platform-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-learn {
  background-color: #00ffff;
  color: #0a0f1a;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-learn:hover {
  background-color: #00cccc;
}

.ask-question {
  color: #00ffff;
  font-size: 0.95rem;
  text-decoration: underline;
  cursor: pointer;
}

/* Portfolio Section */
.portfolio-section {
  background-color: #0a0f1a;
  padding: 5rem 2rem;
  color: #ffffff;
  text-align: center;
}

.portfolio-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.portfolio-heading .highlight {
  color: #00ffff;
}

.portfolio-subtext {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-card {
  background-color: #111827;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.05);
}

.portfolio-card:hover {
  transform: scale(1.1);
  background-color: #003347;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
}

.portfolio-card .icon {
  font-size: 36px;
  color: #00ffff;
  margin-bottom: 1rem;
}

.portfolio-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.portfolio-card p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  background-color: #0a0f1a;
  color: #ffffff;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.plan-card {
  background-color: #111827;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.plan-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
}

.plan-card h3 {
  color: #00ffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.plan-card ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
  font-size: 0.95rem;
}

.plan-card ul li strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.3rem;
  color: #ffffff;
}

.plan-card button {
  background-color: #00ffff;
  color: #0a0f1a;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: background-color 0.3s ease;
}

.plan-card button:hover {
  background-color: #00d5d5;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background-color: #0a0f1a;
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px #00ffff80;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: zoomIn 0.3s ease;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}

/* Stats Section */
.stats-section {
  background-color: #0a0f1a;
  padding: 4rem 2rem;
  color: #ffffff;
  text-align: center;
}

.stats-heading {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background-color: #111827;
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.05);
}

.stat-card:hover {
  transform: scale(1.05);
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.stat-icon {
  font-size: 36px;
  color: #00ffff;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.stat-card p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Testimonials Section */
.testimonials-section-vertical {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #0a0f1a;
  color: #fff;
}

.testimonials-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00ffff;
}

.testimonial-display-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.testimonial-card-vertical {
  background: #111827;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card-vertical:hover {
  transform: scale(1.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #0ff;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

.testimonial-body p {
  font-size: 1rem;
  color: #ddd;
  margin-top: 1rem;
  line-height: 1.6;
}

.testimonial-navigation .arrow {
  font-size: 2rem;
  cursor: pointer;
  color: #0ff;
  user-select: none;
}

/* CTA Section */
.cta-section {
  background-color: #111827;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem auto;
  max-width: 960px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.05);
}

.cta-section h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section h2 span {
  color: #00ffff;
}

.cta-section p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #00ffff;
  color: #111827;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #00cccc;
  transform: scale(1.05);
}

/* Existing CSS remains unchanged, append the following at the end */

/* Notification Styles */
.notification-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1200;
  max-width: 300px;
}

.notification {
  display: flex;
  align-items: center;
  background-color: #111827;
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification .material-icons {
  color: #00ffff;
  font-size: 20px;
  margin-right: 0.5rem;
}

.notification p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}


/* Footer */
.footer {
  background-color: #0a0f1a;
  color: #ccc;
  padding: 3rem 1.5rem 1rem;
  font-size: 0.95rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  color: #00ffff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #00ffff;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00ffff;
}

.footer-contact .material-icons {
  font-size: 18px;
  margin-right: 8px;
  color: #00ffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
  
  .nav1 {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: #0a0f1a;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    border-left: 1px solid rgba(0, 255, 255, 0.2);
  }

  .nav1.active {
    transform: translateX(0);
  }

  .nav1 .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .nav1 .act {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav1 .nav a,
  .nav1 .act .btn {
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
  }

  .nav1 .act .btn {
    padding: 0.8rem 1.5rem;
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px;
  }

  .features-grid,
  .crypto-grid,
  .pricing-grid,
  .trusted-cards,
  .portfolio-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .header {
    padding: 1rem;
  }

  .logo img {
    width: 120px;
  }

  .nav1 {
    gap: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .crypto-card {
    padding: 1rem;
  }

  .crypto-chart canvas {
    height: 50px !important;
  }

  .plan-card h3 {
    font-size: 1rem;
  }

  .price {
    font-size: 2rem;
  }

  .description p,
  .portfolio-subtext,
  .pricing-subtitle {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-image img {
    max-width: 350px;
  }

  .features-grid,
  .crypto-grid,
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 1024px) {
  .nav1 .act .btn,
  .choose-btn,
  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }

  .arrow-down {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .acting {
    display: flex;
    margin-top: 2rem;
  }
  .marquee-track {
    animation: scroll-left 30s linear infinite;
  }

    .notification-container {
    bottom: 10px;
    left: 10px;
    max-width: 250px;
  }

  .notification {
    padding: 0.6rem 1rem;
  }

  .notification p {
    font-size: 0.85rem;
  }
}

.nav1::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav1.active::before {
  opacity: 1;
  pointer-events: auto;
}


/* Telegram button */
.tg {
    position: fixed;
    bottom: 6rem;
    left: 20px;
    display: flex;
    align-items: center;
}

#tg-icon {
    font-size: 60px;
    color: #0088cc;
    margin-right: 10px;
}

.msg {
    background-color: white;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    margin: 0;
    position: relative;
    font-family: Arial, sans-serif;
    opacity: 0;
    animation: showHide 30s ease-out forwards;
}

.msg:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: white transparent transparent transparent;
}

@keyframes showHide {
    0% { opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}