<style>

    /* Add these CSS enhancements to your existing style tag */

/* Enhanced Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f8f9fa;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.3rem;
  color: #21759b;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
}

h2 {
  position: relative;
  font-size: 1.7rem;
  margin-top: 3rem;
  padding-bottom: 0.5rem;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #21759b;
}

h3 {
  font-size: 1.4rem;
  color: #d54e21;
  margin-top: 2rem;
}

/* Enhanced Cards */
.card {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #21759b;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Enhanced Month Sections */
.month {
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #d54e21;
  transition: all 0.3s ease;
}

.month:hover {
  border-left-width: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.month h3 {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.month h4 {
  color: #444;
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

/* Better TOC */
.toc {
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #83c11f;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 1.8rem;
}

.toc h2 {
  margin-top: 0;
  font-size: 1.3rem;
  border-bottom: none;
}

.toc h2:after {
  display: none;
}

.toc ul {
  list-style-type: none;
}

.toc li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.toc li:before {
  content: "•";
  color: #21759b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.toc a {
  text-decoration: none;
  color: #21759b;
  transition: all 0.2s ease;
}

.toc a:hover {
  color: #d54e21;
  padding-left: 3px;
}

/* Enhanced Project Blocks */
.project {
  background-color: #FFF8E1;
  border-left: 4px solid #FFB900;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.project h4 {
  color: #b27200;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Enhanced Links */
a {
  color: #0073aa;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #d54e21;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .content {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
}

    :root {
      --primary: #21759b;
      --primary-light: #0073aa;
      --secondary: #d54e21;
      --dark: #23282d;
      --light: #f0f0f1;
      --text: #333;
      --sidebar-width: 280px;
      --header-height: 60px;
      --accent: #83c11f;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
      line-height: 1.6;
      color: var(--text);
      background-color: #f8f9fa;
    }
    
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--header-height);
      background-color: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      padding: 0 1.5rem;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      z-index: 100;
    }
    
    .logo {
      display: flex;
      align-items: center;
      font-weight: bold;
    }
    
    .logo-icon {
      margin-right: 10px;
      font-size: 24px;
    }
    
    .logo-text {
      font-size: 1.2rem;
    }
    
    .sidebar {
      position: fixed;
      top: var(--header-height);
      left: 0;
      width: var(--sidebar-width);
      height: calc(100vh - var(--header-height));
      background-color: white;
      overflow-y: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      z-index: 90;
      padding-bottom: 2rem;
    }
    
    .sidebar-content {
      padding: 1.5rem 0;
    }
    
    .main-menu {
      list-style: none;
    }
    
    .main-menu > li {
      margin-bottom: 0.5rem;
    }
    
    .main-menu-item {
      display: block;
      padding: 0.5rem 1.5rem;
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      border-left: 3px solid transparent;
    }
    
    .main-menu-item:hover {
      background-color: var(--light);
      border-left-color: var(--primary-light);
    }
    
    .submenu {
      list-style: none;
      margin-left: 1rem;
      border-left: 1px solid #e0e0e0;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
    }
    
    .submenu-item {
      display: block;
      padding: 0.4rem 1.5rem;
      color: var(--text);
      text-decoration: none;
      font-size: 0.9rem;
    }
    
    .submenu-item:hover {
      color: var(--primary-light);
    }
    
    .content {
      margin-left: var(--sidebar-width);
      margin-top: var(--header-height);
      padding: 2rem;
      max-width: 900px;
    }
    
    h1 {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #eee;
    }
    
    h2 {
      font-size: 1.6rem;
      color: var(--dark);
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      padding-bottom: 0.3rem;
      border-bottom: 1px solid #eee;
    }
    
    h3 {
      font-size: 1.3rem;
      color: var(--secondary);
      margin-top: 1.8rem;
      margin-bottom: 0.8rem;
    }
    
    h4 {
      font-size: 1.1rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }
    
    ul, ol {
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }
    
    p {
      margin-bottom: 1rem;
    }
    
    .card {
      background: white;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }
    
    .quarter {
      border-left: 4px solid var(--primary);
      padding-left: 1rem;
      margin: 2rem 0;
    }
    
    .month {
      background-color: var(--light);
      padding: 0.8rem;
      border-radius: 4px;
      margin: 1.5rem 0;
    }
    
    .toc {
      background-color: #f8f9fa;
      padding: 1.5rem;
      border-radius: 4px;
      margin-bottom: 2rem;
      border-left: 4px solid var(--accent);
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .toc h2 {
      margin-top: 0;
      font-size: 1.2rem;
    }
    
    .toc ul {
      list-style: none;
      margin-left: 0;
    }
    
    .toc li {
      margin-bottom: 0.5rem;
    }
    
    .toc a {
      text-decoration: none;
      color: var(--primary);
    }
    
    .toc a:hover {
      text-decoration: underline;
    }
    
    .resources {
      background-color: #f0f7fa;
      border-left: 4px solid #0073aa;
      padding: 1rem;
      margin: 1.5rem 0;
    }
    
    .project {
      background-color: #fff8e6;
      border-left: 4px solid #ffb900;
      padding: 1rem;
      margin: 1.5rem 0;
    }
    
    /* Donate Section Styles */
    .donate-section {
      background-color: #f6f9fc;
      padding: 4rem 2rem;
      margin: 3rem -2rem;
      text-align: center;
    }
    
    .donate-container {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .donate-section h2 {
      color: var(--primary);
      font-size: 2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
    }
    
    .donate-intro {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 2.5rem;
      color: #555;
    }
    
    .donation-options {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    
    .donation-tier {
      background-color: white;
      border-radius: 8px;
      padding: 1.5rem;
      width: 250px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .donation-tier:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .donation-tier.featured {
      border: 2px solid var(--secondary);
      transform: scale(1.05);
    }
    
    .donation-tier.featured:hover {
      transform: translateY(-5px) scale(1.05);
    }
    
    .donation-tier h3 {
      margin-top: 0;
      font-size: 1.3rem;
      color: var(--dark);
    }
    
    .donation-tier .price {
      display: block;
      font-size: 2rem;
      font-weight: bold;
      color: var(--primary);
      margin: 1rem 0;
    }
    
    .donation-tier p {
      min-height: 50px;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }
    
    .donate-button {
      display: inline-block;
      text-decoration: none;
      padding: 0.8rem 1.5rem;
      border-radius: 4px;
      font-weight: 600;
      transition: background-color 0.2s;
    }
    
    .donate-button.small {
      background-color: #f0f0f1;
      color: var(--dark);
    }
    
    .donate-button.small:hover {
      background-color: #e0e0e1;
    }
    
    .donate-button.medium {
      background-color: var(--secondary);
      color: white;
    }
    
    .donate-button.medium:hover {
      background-color: #e67e00;
    }
    
    .donate-button.large {
      background-color: var(--primary);
      color: white;
    }
    
    .donate-button.large:hover {
      background-color: var(--primary-light);
    }
    
    .other-ways {
      background-color: white;
      padding: 1.5rem;
      border-radius: 8px;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
    
    .other-ways h4 {
      margin-top: 0;
      color: var(--dark);
    }
    
    .other-ways ul {
      text-align: left;
      margin-left: 1rem;
    }
    
    .other-ways a {
      color: var(--primary);
      text-decoration: none;
    }
    
    .other-ways a:hover {
      text-decoration: underline;
    }
    
   /* Newsletter Section Styling */
.newsletter-section {
    background-color: #23282d;
    color: white;
    padding: 5rem 2rem;
    margin: 5rem -2.5rem;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
  }
  
  .newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .newsletter-content {
    flex: 1;
    min-width: 300px;
  }
  
  .newsletter-content h2 {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.8rem;
    font-size: 2rem;
    margin-top: 0;
    position: relative;
  }
  
  .newsletter-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #d54e21;
  }
  
  .newsletter-benefits {
    list-style-type: none;
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .newsletter-benefits li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
  }
  
  .newsletter-benefits li::before {
    content: "✓";
    color: #d54e21;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .newsletter-benefits li strong {
    color: #83c11f;
    font-weight: 600;
  }
  
  .newsletter-form {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-form::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(211, 78, 33, 0.1);
    border-radius: 50%;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"] {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
  }
  
  .form-group input[type="text"]:focus,
  .form-group input[type="email"]:focus {
    outline: none;
    border-color: #d54e21;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(213, 78, 33, 0.2);
  }
  
  .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
  }
  
  .checkbox-group label:hover {
    color: white;
  }
  
  .checkbox-group input {
    margin-right: 0.7rem;
    accent-color: #d54e21;
    width: 16px;
    height: 16px;
  }
  
  .form-group.consent label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
  }
  
  .form-group.consent input {
    margin-right: 0.7rem;
    margin-top: 0.3rem;
    accent-color: #d54e21;
  }
  
  .subscribe-button {
    background-color: #d54e21;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(213, 78, 33, 0.3);
  }
  
  .subscribe-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: all 0.6s ease;
  }
  
  .subscribe-button:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(213, 78, 33, 0.4);
  }
  
  .subscribe-button:hover::before {
    left: 100%;
  }
  
  .subscribe-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(213, 78, 33, 0.4);
  }
  
  /* Success message styles */
  .success-message {
    text-align: center;
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .success-message h3 {
    color: #83c11f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }
  
  .success-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .success-message strong {
    color: #d54e21;
    font-weight: 600;
  }
  
  .success-message .small {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2rem;
    display: block;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 4rem 1.5rem;
    }
    
    .newsletter-container {
      flex-direction: column;
      gap: 2rem;
    }
    
    .checkbox-group {
      grid-template-columns: 1fr;
    }
    
    .newsletter-content h2 {
      font-size: 1.7rem;
    }
    
    .newsletter-benefits li {
      font-size: 1rem;
    }
    
    .subscribe-button {
      font-size: 1rem;
      padding: 0.9rem 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .newsletter-section {
      padding: 3rem 1rem;
      margin: 3rem -1rem;
    }
    
    .newsletter-form {
      padding: 1.5rem;
    }
    
    .newsletter-content h2 {
      font-size: 1.5rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"] {
      padding: 0.8rem;
    }
  }

  

    /* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top i {
    font-size: 20px;
  }
}

/* Paywall Section */
.paywall-section {
  background-color: white;
  padding: 4rem 2rem;
  margin: 3rem 0;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.paywall-container {
  max-width: 800px;
  margin: 0 auto;
}

.paywall-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.paywall-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #555;
}

.paywall-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--dark);
}

.feature p {
  color: #666;
  font-size: 0.95rem;
}

.paywall-pricing {
  padding: 2rem;
  background-color: #f0f7fa;
  border-radius: 8px;
  display: inline-block;
  margin: 0 auto;
}

.price {
  margin-bottom: 1.5rem;
}

.price .amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
}

.price .label {
  color: #666;
}

.payment-button {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.payment-button i {
  margin-right: 0.5rem;
}

.payment-button:hover {
  background-color: #c73e12;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.guarantee {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Hide premium content for non-paying users */
.premium-content {
  position: relative;
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.premium-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

/* Show premium content for paying users */
.premium-content.unlocked {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

.premium-content.unlocked::before {
  display: none;
}

@media (max-width: 768px) {
  .paywall-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature {
    width: 100%;
  }
}

.already-paid {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.text-button {
  background: none;
  border: none;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}

.text-button:hover {
  color: var(--secondary);
}

.floating-tweet-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #1DA1F2;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  width: 60px;
  height: 60px;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}

.floating-tweet-widget:hover {
  width: 320px;
}

.tweet-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.tweet-content {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: normal;
  width: 260px;
}

.tweet-content p {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.4;
}

#tweetButton {
  background-color: white;
  color: #1DA1F2;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

#tweetButton:hover {
  background-color: #e6e6e6;
}

@media (max-width: 768px) {
  .floating-tweet-widget {
    bottom: 70px;
    right: 15px;
  }
}
.currency-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
  }
  
  .currency-modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
  }
  
  @keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .currency-modal h3 {
    color: #21759b;
    margin-top: 0;
    text-align: center;
    font-size: 1.5rem;
  }
  
  .currency-modal p {
    text-align: center;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .currency-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .currency-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-align: left;
  }
  
  .currency-button:hover {
    border-color: #21759b;
    background-color: #f0f7fa;
  }
  
  .currency-button.selected {
    border-color: #21759b;
    background-color: #e6f3f8;
  }
  
  .currency-symbol {
    font-size: 1.5rem;
    font-weight: bold;
    color: #21759b;
    width: 40px;
    text-align: center;
  }
  
  .currency-name {
    flex-grow: 1;
    padding: 0 1rem;
  }
  
  .currency-amount {
    font-weight: bold;
    color: #21759b;
  }
  
  .modal-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  
  .currency-note {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
  }
  
  @media (max-width: 576px) {
    .currency-modal-content {
      padding: 1.5rem;
    }
    
    .currency-button {
      padding: 0.8rem 1rem;
    }
    
    .currency-symbol {
      font-size: 1.2rem;
      width: 30px;
    }
    
    .currency-name {
      font-size: 0.9rem;
    }
  }

  /* Basic Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    color: #fff;
  }

  .modal h2{
    color: #fff;
  }
  
  .modal-content {
    background-color: #23282D;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .close-button {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close-button:hover {
    color: red;
  }
  
  /* Affiliate Button Styling */
  .affiliate-button {
    display: inline-block;
    background-color: #C73E12;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .affiliate-button a {
    color: white;
  }
  .affiliate-button:hover {
    background-color: #C73E12;
    color: #fff;
  }
  
  /* Form Styling */
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .form-group input[type="text"], .form-group input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
  }

  .btn {
    background-color: #21759b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .btn:hover {
    background-color: #135e79;
  }
  
  /* Dashboard Styling */
  .stats-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .stat-box {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    width: 48%;
  }
  
  .stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #21759b;
  }
  
  .stat-label {
    color: #666;
  }
  
  .link-container {
    margin-bottom: 20px;
  }
  
  .affiliate-link-field {
    display: flex;
    margin-bottom: 10px;
  }
  
  .affiliate-link-field input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
  }
  
  .affiliate-link-field button {
    border-radius: 0 4px 4px 0;
  }
  
  .social-container {
    margin-top: 20px;
  }
  
  .social-buttons {
    display: flex;
    justify-content: space-between;
  }
  
  .social-btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    text-align: center;
    width: 30%;
  }
  
  .twitter {
    background-color: #1DA1F2;
    color: #fff !important;
  }
  .twitter a {
    background-color: #1DA1F2;
    color: #fff !important;
  }
  
  .facebook {
    background-color: #4267B2;
  }
  
  .whatsapp {
    background-color: #25D366;
  }

  /* Currency Modal Styles */
.currency-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.currency-modal-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease;
}

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

.currency-modal h3 {
  color: #21759b;
  margin-top: 0;
  text-align: center;
  font-size: 1.5rem;
}

.currency-modal p {
  text-align: center;
  color: #555;
  margin-bottom: 1.5rem;
}

.currency-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.currency-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  text-align: left;
}

.currency-button:hover {
  border-color: #21759b;
  background-color: #f0f7fa;
}

.currency-button.selected {
  border-color: #21759b;
  background-color: #e6f3f8;
}

.currency-symbol {
  font-size: 1.5rem;
  font-weight: bold;
  color: #21759b;
  width: 40px;
  text-align: center;
}

.currency-name {
  flex-grow: 1;
  padding: 0 1rem;
}

.currency-amount {
  font-weight: bold;
  color: #21759b;
}

.modal-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.currency-note {
  color: #777;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 576px) {
  .currency-modal-content {
    padding: 1.5rem;
  }
  
  .currency-button {
    padding: 0.8rem 1rem;
  }
  
  .currency-symbol {
    font-size: 1.2rem;
    width: 30px;
  }
  
  .currency-name {
    font-size: 0.9rem;
  }
}