/* Make wishlist items vertical */
.wishlist-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin: 1.2rem 0 2rem 0;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .wishlist-list {
    flex-direction: column;
    align-items: center;
    margin-top: 1.2rem;
  }
}
@media (max-width: 700px) {
  .wishlist-list {
    flex-direction: column;
    align-items: center;
  }
}
.wishlist-item {
  background: linear-gradient(135deg, #fafdff 60%, #e6f0fa 100%);
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 2.2rem 2.2rem 1.7rem 2.2rem;
  min-width: 270px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #e0e8f3;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}
.wishlist-item:hover {
  box-shadow: 0 12px 36px rgba(0, 184, 217, 0.13), 0 2px 8px rgba(0,0,0,0.07);
  transform: translateY(-4px) scale(1.025);
  border-color: #b3e6f7;
}
.wishlist-item h4 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0077b6;
  letter-spacing: 0.01em;
}
.wishlist-item p {
  color: #3a3a3a;
  font-size: 1.04rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.wishlist-item .price {
  font-size: 1.22rem;
  font-weight: 700;
  color: #00b8d9;
  margin-top: 0.5rem;
  background: #e0f7fa;
  border-radius: 1.2rem;
  padding: 0.35em 1.2em;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(0,184,217,0.07);
}
.wishlist-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.wishlist-item .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00b8d9;
  margin-top: 0.5rem;
}
/* Modern card design for support page main tabs */
.support-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.support-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 350px;
  min-width: 280px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.support-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.support-header {
  text-align: center;
  margin-bottom: 1.2rem;
}
.support-header i {
  font-size: 2.5rem;
  color: #00b8d9;
  margin-bottom: 0.5rem;
}
.support-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.2rem 0 0.5rem 0;
}
.support-header .support-subtitle {
  color: #4a90e2;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.support-content {
  text-align: center;
  font-size: 1.05rem;
  color: #333;
}
.donation-platforms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.2rem;
}
.patreon-benefits ul {
  text-align: left;
  margin: 0 auto 1rem auto;
  max-width: 260px;
}
.patreon-benefits li {
  margin-bottom: 0.5rem;
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1rem;
}
.share-btn {
  min-width: 120px;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  background: #f5f7fa;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.share-btn.facebook { background: #1877f2; color: #fff; }
.share-btn.facebook:hover { background: #145db2; }
.share-btn.twitter { background: #1da1f2; color: #fff; }
.share-btn.twitter:hover { background: #0d8ddb; }
.share-btn.instagram { background: #e1306c; color: #fff; }
.share-btn.instagram:hover { background: #b92d5d; }
.share-btn.email { background: #333; color: #fff; }
.share-btn.email:hover { background: #222; }

/* Center the Contact About Gear button */
.center-contact-gear {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
/* Support Page Specific Styles */

/* Support Hero Section - Full width but vertically shorter */
.support-hero {
    position: relative;
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Break out of container */
    min-height: 180px; /* Even shorter than before */
    background: var(--gradient-ocean);
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 40px 0 15px 0; /* Reduced padding for shorter height */
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 V120 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>') bottom center/cover no-repeat;
    opacity: 0.3;
}

.support-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.2);
    backdrop-filter: blur(1px);
}

.support-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.support-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem); /* Slightly smaller than gallery */
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-hero p {
    font-size: var(--font-size-base); /* Slightly smaller text */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .support-hero {
        min-height: 130px; /* Even shorter on mobile */
        padding: 30px 0 10px 0;
    }
    
    .support-hero h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .support-hero p {
        font-size: var(--font-size-sm);
    }
}

.why-support {
    padding: 60px 0; /* Reduced from 80px */
    background: var(--light-gray);
    margin-top: 0; /* Removed margin since hero is now full width */
}

.support-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.support-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.support-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1);
}

.impact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.impact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-card p {
    line-height: 1.6;
    color: var(--text-color);
}

/* Support Options */
.support-options {
    padding: 100px 0 20px 0;
    background: var(--white);
}

.support-options h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow);
}

.support-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.02);
}

.support-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.support-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.support-subtitle {
    opacity: 0.9;
    font-size: 1rem;
}

.support-content {
    padding: 2rem;
}

.support-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.patreon-tiers {
    margin-bottom: 2rem;
}

.tier {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.tier h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tier ul {
    list-style: none;
}

.tier li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.donation-platforms {
    display: flex;
    gap: 1rem;
}

.wishlist-items {
    margin-bottom: 2rem;
}

.wishlist-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wishlist-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.price {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Fund Usage */
.fund-usage {
    padding: 100px 0;
    background: var(--light-blue);
}

.fund-usage h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.usage-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.usage-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.usage-chart {
    display: flex;
    justify-content: center;
}

.usage-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.usage-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-top: 4px;
    flex-shrink: 0;
}

.usage-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.usage-info p {
    line-height: 1.6;
    color: var(--text-color);
}

/* Supporter Testimonials */
.supporter-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.supporter-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
    color: var(--text-color);
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

/* Alternative Support */
.alternative-support {
    padding: 100px 0;
    background: var(--light-gray);
}

.alternative-support h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.alternative-support > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alt-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.alt-support-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.alt-support-item:hover {
    transform: translateY(-5px);
}

.alt-support-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.alt-support-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.alt-support-item p {
    line-height: 1.6;
    color: var(--text-color);
}

.social-follow {
    text-align: center;
}

.social-follow h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn i {
    font-size: 1.3rem;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-cards {
        grid-template-columns: 1fr;
    }
    
    .support-card.featured {
        transform: none;
    }
    
    .usage-breakdown {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .usage-chart {
        order: -1;
    }
    
    .donation-platforms {
        flex-direction: column;
    }
    
    .wishlist-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .alt-support-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        flex-direction: column;
    }
    
    .amount-btn {
        text-align: center;
    }
}

/* New Support Page Styles */

/* Patreon Benefits Styling */
.patreon-benefits {
    margin: 2rem 0;
}

.patreon-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.patreon-benefits ul {
    list-style: none;
    padding: 0;
}

.patreon-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.patreon-benefits li i {
    color: var(--secondary-color);
    width: 20px;
}

/* Button Enhancements */
.patreon-btn {
    background: #f96854;
    border: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin: 1rem 0;
}

.patreon-btn:hover {
    background: #e85a4f;
    transform: translateY(-2px);
}

.kofi-btn {
    background: #ff5f5f;
    color: white;
}

.kofi-btn:hover {
    background: #e54545;
}

.paypal-btn {
    background: #0070ba;
    color: white;
}

.paypal-btn:hover {
    background: #005ea6;
}

.btn-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Share Functionality */
.share-options {
    margin: 2rem 0;
}

.share-options h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.share-btn {
    background: var(--light-gray);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.share-btn.email {
    background: #34495e;
    color: white;
}

.share-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.copy-link {
    display: flex;
    gap: 0.5rem;
}

.copy-link input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.9rem;
}

.copy-link button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-link button:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Thank You Section */
.thank-you-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.gratitude-message {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.gratitude-message p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.signature p {
    margin-bottom: 0.5rem;
}

.names {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Stay Connected Section */
.stay-connected {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.stay-connected h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stay-connected > p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.connection-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.connection-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.connection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.connection-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.connection-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.connection-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.connect-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.connect-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: white;
}

/* Newsletter Signup Enhancement */
.newsletter-signup {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-signup input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-signup input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-signup button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-signup button:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .thank-you-content h2 {
        font-size: 2.5rem;
    }
    
    .gratitude-message p {
        font-size: 1.1rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .connection-options {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-signup {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .copy-link {
        flex-direction: column;
    }
    
    .thank-you-content h2 {
        font-size: 2rem;
    }
}
