/* Support Page Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
    position: relative;
}

.page-hero h1 i {
    color: var(--accent-color);
    margin-right: 15px;
    animation: tvGlow 2s ease-in-out infinite;
}

@keyframes tvGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 85, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 85, 1), 0 0 60px rgba(255, 0, 85, 0.6); }
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Support Intro */
.support-intro {
    padding: 80px 0;
    background: #000000;
}

.intro-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.intro-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Support Methods */
.support-methods {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.support-methods h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.3);
}

/* Wide card for Radio Spot */
.radio-spot-wide {
    grid-column: span 2;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #d4004f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.method-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.method-card > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Support Buttons */
.support-btn {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.paypal-btn {
    background: #0070ba;
    color: white;
}

.paypal-btn:hover {
    background: #005ea6;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 112, 186, 0.4);
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #1465d8;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.patreon-btn {
    background: #ff424d;
    color: white;
}

.patreon-btn:hover {
    background: #e03a44;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 66, 77, 0.4);
}

/* Bank Details */
.bank-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 3px solid var(--accent-color);
}

.bank-details p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.bank-details strong {
    color: var(--accent-color);
}

/* Price Highlight */
.price-highlight {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1em;
}

/* Patreon Tiers */
.patreon-tiers {
    margin-top: 1.5rem;
}

.tier {
    background: rgba(255, 66, 77, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid #ff424d;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.tier strong {
    color: #ff424d;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.share-btn {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #1465d8;
    transform: translateX(5px);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1a8cd8;
    transform: translateX(5px);
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn.instagram:hover {
    opacity: 0.9;
    transform: translateX(5px);
}

/* Supporters Section */
.supporters {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.supporters h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.supporters h2 i {
    color: #ffd700;
    margin-right: 10px;
}

.supporters-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.supporters-list {
    max-width: 900px;
    margin: 0 auto;
}

.supporter-tier {
    margin-bottom: 3rem;
}

.supporter-tier h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.supporter-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.supporter-name {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.supporter-name:hover {
    background: rgba(255, 0, 85, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.supporters-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Thank You Section */
.thank-you {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-content i {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thank-you-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thank-you-content a:hover {
    text-decoration: underline;
    color: #ff3366;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .intro-content h2,
    .support-methods h2,
    .supporters h2,
    .thank-you-content h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 2rem;
    }
    
    .radio-spot-wide {
        grid-column: span 1;
    }
}

/* About Section Styles (for Non-Profit section) */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.85);
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

/* Contact Info */
.contact-info-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 0, 85, 0.05);
    border-radius: 15px;
    margin: 40px 0;
}

.contact-info-box a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-info-box a:hover {
    text-decoration: underline;
}
