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

/* Global override for any unwanted backgrounds */
p, h1, h2, h3, h4, h5, h6, ul, li, div {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: #2c3e50 !important;
}

/* Remove all bullets from lists */
ul, ol {
  list-style: none !important;
  padding-left: 0 !important;
}

li {
  padding-left: 0 !important;
}

li::before {
  display: none !important;
}

/* Specific override for main content */
#main-content *,
#about-content *,
#team-content *,
#contact-content * {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: #2c3e50 !important;
}

/* Preserve specific element styles */
.product-card,
.team-member,
.cta-section,
.contact-info,
.cta-button,
#main-content a[href*="t.me"],
.lang-btn,
.header,
.footer {
  background: inherit !important;
  background-color: inherit !important;
  background-image: inherit !important;
  color: inherit !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background: radial-gradient(circle at center, #ffffff 0%, rgba(240, 240, 240, 0.05) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.language-switcher {
  display: flex;
  gap: 1rem;
}

.lang-btn {
  background: #f8f9fa !important;
  border: 1px solid #dee2e6 !important;
  color: #495057 !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.lang-btn:hover,
.lang-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-color: #667eea !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Main content */
.main-content {
  margin-top: 80px;
  padding: 1rem 0;
  min-height: calc(100vh - 80px);
}

.section {
  margin: 3rem 0;
  padding: 2rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 3rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #dee2e6;
}

.product-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-description {
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 500;
}

.product-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.product-features li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  font-size: 1rem;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #dee2e6;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.team-name {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-role {
  color: #666;
  font-style: italic;
}

/* Contact section */
.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-email {
  font-size: 1.2rem;
  color: #3498db;
  text-decoration: none;
  margin-bottom: 1rem;
  display: block;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-address {
  color: #34495e;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.legal-link {
  color: #34495e;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.legal-link:hover {
  background: #3498db;
  color: white;
  border-color: #3498db;
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .product-card {
    padding: 2rem;
  }
  
  .product-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  
  .product-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .product-link {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .language-switcher {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .product-card,
  .team-member,
  .contact-info {
    padding: 1.5rem;
  }
}

/* Product links */
.product-link {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.01em;
}

.product-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white !important;
  text-decoration: none;
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
}

/* Back button */
.back-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Product content */
.product-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-content h2 {
  color: white;
  font-size: 2rem;
  margin: 3rem 0 1.5rem 0;
  font-weight: 600;
}

.product-content h3 {
  color: white;
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  font-weight: 500;
}

.product-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.product-content ul {
  color: rgba(255, 255, 255, 0.8);
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.product-content li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Main content styles for markdown content */
#main-content h1 {
  color: #2c3e50;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

#main-content h1:not(:first-child) {
  margin-top: 2.5rem;
}

#main-content p {
  color: #2c3e50;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-size: 1.05rem;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

#main-content h2 {
  color: #34495e;
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem 0;
  font-weight: 600;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

#main-content h3 {
  color: #34495e;
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem 0;
  font-weight: 500;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

#main-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

#main-content ul {
  color: #34495e;
  margin: 1.2rem 0;
  list-style: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#main-content li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
}

/* Horizontal rule styles - removed */
hr {
  display: none !important;
}

#main-content hr {
  display: none;
}

/* Center alignment for CTA section */
#main-content {
  text-align: center;
}

#main-content h1,
#main-content h2,
#main-content h3,
#main-content p,
#main-content ul {
  text-align: left;
  background: none !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  margin: inherit;
  color: #2c3e50 !important;
}

/* Force remove any background from paragraphs */
#main-content p,
#about-content p,
#team-content p,
#contact-content p,
.hero-subtitle,
.section-subtitle {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  margin: inherit;
  color: #2c3e50 !important;
}

/* Styles for other content sections */
#about-content h1,
#team-content h1,
#contact-content h1 {
  color: #2c3e50;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

#about-content h2,
#team-content h2,
#contact-content h2 {
  color: #34495e;
  font-size: 2rem;
  margin: 3rem 0 1.5rem 0;
  font-weight: 600;
}

#about-content h3,
#team-content h3,
#contact-content h3 {
  color: #34495e;
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  font-weight: 500;
}

#about-content p,
#team-content p,
#contact-content p {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 500;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

#about-content ul,
#team-content ul,
#contact-content ul {
  color: #34495e;
  margin: 1.5rem 0;
  list-style: none;
}

#about-content li,
#team-content li,
#contact-content li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid #e9ecef;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer p {
  color: #6c757d;
  margin: 0;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Product page specific styles */
.product-page {
  min-height: 100vh;
  padding: 2rem 0;
}

.product-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
  font-weight: bold;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

.product-actions {
  margin-top: 3rem;
  text-align: center;
}

.contact-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
  .product-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .product-breadcrumb {
    font-size: 0.8rem;
  }
  
  .product-content {
    padding: 2rem 1.5rem;
  }
  
  .product-content h1 {
    font-size: 2.2rem;
  }
  
  .product-content h2 {
    font-size: 1.6rem;
  }
  
  .product-content h3 {
    font-size: 1.3rem;
  }
  
  .product-content p {
    font-size: 1rem;
  }
  
  .contact-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .contact-info a[href*="t.me"] {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  
  .cta-section {
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 90%;
  }
  
  #main-content a[href*="t.me"] {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    margin: 1.5rem auto;
    max-width: 280px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Mobile styles for content sections */
  #main-content h1,
  #about-content h1,
  #team-content h1,
  #contact-content h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  
  #main-content h1:not(:first-child) {
    margin-top: 1.5rem;
  }
  
  #main-content h2,
  #about-content h2,
  #team-content h2,
  #contact-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.8rem 0;
  }
  
  #main-content h3,
  #about-content h3,
  #team-content h3,
  #contact-content h3 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.6rem 0;
  }
  
  #main-content p,
  #about-content p,
  #team-content p,
  #contact-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  #main-content h2,
  #about-content h2,
  #team-content h2,
  #contact-content h2 {
    font-size: 1.6rem;
  }
  
  #main-content h3,
  #about-content h3,
  #team-content h3,
  #contact-content h3 {
    font-size: 1.3rem;
  }
  
  #main-content p,
  #about-content p,
  #team-content p,
  #contact-content p {
    font-size: 1rem;
  }
  
  #main-content ul,
  #about-content ul,
  #team-content ul,
  #contact-content ul {
    padding-left: 1.5rem;
  }
  
  #main-content li,
  #about-content li,
  #team-content li,
  #contact-content li {
    padding-left: 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .product-content {
    padding: 1.5rem 1rem;
  }
  
  .product-content h1 {
    font-size: 1.8rem;
  }
  
  .product-content h2 {
    font-size: 1.4rem;
  }
  
  .product-content h3 {
    font-size: 1.2rem;
  }
  
  .back-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .contact-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .contact-info a[href*="t.me"] {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .cta-section {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* Small screen styles for content sections */
  #main-content h1,
  #about-content h1,
  #team-content h1,
  #contact-content h1 {
    font-size: 1.8rem;
  }
  
  #main-content h2,
  #about-content h2,
  #team-content h2,
  #contact-content h2 {
    font-size: 1.4rem;
  }
  
  #main-content h3,
  #about-content h3,
  #team-content h3,
  #contact-content h3 {
    font-size: 1.2rem;
  }
  
  #main-content p,
  #about-content p,
  #team-content p,
  #contact-content p {
    font-size: 0.95rem;
  }
  
  #main-content ul,
  #about-content ul,
  #team-content ul,
  #contact-content ul {
    padding-left: 1rem;
  }
  
  #main-content li,
  #about-content li,
  #team-content li,
  #contact-content li {
    padding-left: 1rem;
    font-size: 0.95rem;
  }
}

/* Contact section styles */
.contact-info {
  text-align: center;
}

.contact-info a {
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

/* Special styling for Telegram links in contact section */
#contact-content a[href*="t.me"],
#about-content a[href*="t.me"],
#team-content a[href*="t.me"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  margin: 0.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none !important;
}

#contact-content a[href*="t.me"]:hover,
#about-content a[href*="t.me"]:hover,
#team-content a[href*="t.me"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
  color: white !important;
  text-decoration: none !important;
}

.contact-info a:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

/* Telegram link specific styles */
.contact-info a[href*="t.me"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.contact-info a[href*="t.me"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  text-decoration: none;
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.contact-info a[href*="t.me"]::before {
  content: "📱 ";
  margin-right: 0.5rem;
}

/* CTA Section styles */
.cta-section {
  text-align: center;
  margin: 2.5rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

/* CTA Link styles for markdown */
#main-content a[href*="t.me"] {
  display: block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  text-align: center;
  width: fit-content;
  max-width: 300px;
}

#main-content a[href*="t.me"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
}

#main-content a[href*="t.me"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

#main-content a[href*="t.me"]:hover::before {
  left: 100%;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin: 0;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white !important;
  text-decoration: none !important;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
