:root {
  --primary-color: #C5F94A;
  --secondary-color: #a8e629;
  --danger-color: #ea4335;
  --background-color: #1a1a1a;
  --card-background: #2d2d2d;
  --text-color: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: #404040;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --hover-bg: #353535;
}

body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
}

.container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 2.5rem;
  background: var(--card-background);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

h1 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.card {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.qr-section {
  text-align: center;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: var(--background-color);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  padding: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
}

button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

button:active {
  transform: translateY(0);
}

#loginBtn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #1a1a1a;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

#logoutBtn {
  background: var(--danger-color);
}

#qrResult {
  margin-top: 2rem;
  padding: 1rem;
}

#qrResult img {
  max-width: 250px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 1rem 0;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.qr-preview {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: white;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-actions {
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.history-item:hover .qr-actions {
  opacity: 1;
}

.icon-btn {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 8px;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.icon-btn.delete-btn:hover {
  background: var(--danger-color);
  border-color: var(--danger-color);
}

.qr-info {
  padding: 1rem;
}

.qr-content {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
}

.qr-date {
  color: #666;
  font-size: 0.875rem;
}

.empty-state {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.notice {
  background: #fff3cd;
  color: #856404;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--card-background);
  color: var(--text-color);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  z-index: 2000;
}

.toast.success {
  border-left: 4px solid var(--secondary-color);
}

.toast.error {
  border-left: 4px solid var(--danger-color);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .container {
    margin: 1rem auto;
  }
  
  .header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .history-grid {
    grid-template-columns: 1fr;
  }
  
  .qr-actions {
    opacity: 1;
    background: rgba(0,0,0,0.3);
  }
  
  .icon-btn {
    width: 36px;
    height: 36px;
  }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 400px;
    width: 90%;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal h3 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.modal .cancel-btn {
    background: var(--border-color);
    color: var(--text-color);
}

.modal .delete-btn {
    background: var(--danger-color);
}

/* Add button styles */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-width: 100px;
}

.btn-cancel {
  background: var(--border-color);
  color: var(--text-color);
}

.btn-delete {
  background: var(--danger-color);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Enhanced Landing Page Styles */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.hero-content {
    text-align: left;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.secondary-cta {
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.trust-badges {
    display: flex;
    gap: 2rem;
}

.badge {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: "✓";
    color: var(--secondary-color);
}

.how-it-works {
    margin: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(197, 249, 74, 0.3);
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
  text-align: center;
        gap: 2rem;
    }

    .hero-content {
  text-align: center;
}

    .hero-section h2 {
        font-size: 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
  }
  
    .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Footer styles */
.footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
}

.footer-links {
  display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Terms/Privacy Modal styles */
.terms-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.terms-text {
    margin: 1.5rem 0;
    color: var(--text-color);
}

.terms-text h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem 0;
}

.terms-text ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.terms-text li {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    text-align: center;
}
}

/* QR Demo Animation */
.qr-demo-animation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    gap: 2rem;
}

.demo-link {
    background: var(--background-color);
  padding: 1rem;
  border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.link-icon {
    font-size: 1.5rem;
}

.link-text {
    color: var(--text-secondary);
}

.demo-arrow {
    color: var(--primary-color);
    animation: slideRight 2s infinite;
}

.demo-qr {
    width: 100px;
    height: 100px;
    position: relative;
}

.qr-loading {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius);
    animation: qrGenerate 2s infinite;
}

.qr-success {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0;
    animation: fadeInOut 2s infinite;
}

/* Feature Cards Enhancement */
.feature-card {
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideRight {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

@keyframes qrGenerate {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add hover effect to step cards */
.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    background: var(--secondary-color);
}

/* Enhanced Features Section */
.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    transform: translate(-50%, -50%);
    border-radius: var(--border-radius);
    filter: blur(60px);
    pointer-events: none;
}

.feature-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--background-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-list {
    margin-top: auto;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    color: var(--text-color);
}

.feature-list li::before {
    content: "→";
    color: var(--secondary-color);
    font-weight: bold;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 1024px) {
  .container {
    margin: 1rem auto;
  }
  
.hero-section {
        padding: 2rem 1.5rem;
}

.hero-section h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
        gap: 1rem;
    text-align: center;
        padding: 1.5rem;
}

.hero-content {
        padding: 1rem;
}

.cta-group {
        flex-direction: column;
    gap: 1rem;
}

.secondary-cta {
        width: 100%;
        text-align: center;
}

.trust-badges {
        grid-template-columns: 1fr;
    }

    .qr-demo-animation {
        flex-direction: column;
        padding: 1.5rem;
    }

    .demo-link {
        width: 100%;
    }

    .link-text {
    font-size: 0.9rem;
        word-break: break-all;
    }

    .feature-card {
        padding: 1.5rem;
}

.steps-grid {
        gap: 1rem;
}

.step-card {
        padding: 1.5rem;
    }

    /* Improve form elements on mobile */
    input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
    }

    button {
        width: 100%;
  padding: 1rem;
    }

    /* Improve modal on mobile */
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        width: 100%;
    }

    /* Improve history grid on mobile */
  .history-grid {
    grid-template-columns: 1fr;
  }
  
  .qr-actions {
    opacity: 1;
        background: rgba(0,0,0,0.7);
    }
}

/* Add touch-friendly tap targets */
@media (hover: none) {
    .feature-list li {
        padding: 0.75rem 0;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-links a {
        padding: 0.5rem;
    }
}

/* Improve loading states on mobile */
@media (prefers-reduced-motion: reduce) {
    .feature-icon,
    .feature-card,
    .step-card,
    .demo-link,
    .demo-arrow {
        animation: none;
    }
}

/* Modern Dashboard Styles 2025 */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeIn 0.5s ease;
}

.generate-section {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, var(--card-background), var(--background-color));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section-header {
  display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    background: rgba(66, 133, 244, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Glass Effect Input */
.glass-effect {
    display: flex;
    align-items: center;
    gap: 1rem;
  padding: 1rem;
    border-radius: 12px;
}

.input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--background-color);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.generate-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #1a1a1a;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

/* Improve QR Code Display in History */
.qr-preview {
    width: 120px;  /* Increased from 80px */
    height: 120px; /* Increased from 80px */
    background: white;
    padding: 8px;
    border-radius: 12px;
}

.qr-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
    border-radius: 8px;
}

/* Enhanced Filter Styling */
.filter-btn,
.filter-menu,
.filter-option {
    display: none;
}

/* History Item Layout */
.history-item {
    padding: 1.25rem;
    gap: 2rem;
    align-items: center;
}

.qr-info {
    flex: 1;
    min-width: 0;
}

.qr-content {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.qr-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.qr-actions {
    display: flex;
    gap: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .input-group {
        flex-direction: row;
        padding: 0.75rem;
    }

    .generate-btn {
        padding: 0.75rem 1rem;
    }

    .history-item {
  padding: 1rem;
    gap: 1rem;
  }
  
    .qr-preview {
        width: 100px;
        height: 100px;
  }
  
  .qr-actions {
    opacity: 1;
    }

    .filter-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 0;
        border-radius: 20px 20px 0 0;
        padding: 1.5rem;
        min-width: auto;
        animation: slideUp 0.3s ease;
        background: var(--card-background);
        border-bottom: none;
    }

    .filter-option {
        padding: 1rem;
    }

    /* Add backdrop for mobile */
    .filter-menu::before {
        content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
}

/* Add logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Update gradient text to use new colors */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Update button gradients */
.generate-btn, .cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #1a1a1a;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Style the download button */
.download-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #1a1a1a; /* Dark text color */
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 249, 74, 0.3);
}

.download-btn:active {
    transform: translateY(0);
}

/* Update icon color in download button */
.download-btn svg {
    fill: #1a1a1a;
} 