/* Donate page specific styles */

/* Base styles for donation page */
.main-content {
    --border-radius: 12px;
    --tier-bronze: #cd7f32;
    --tier-silver: #c0c0c0;
    --tier-gold: #ffd700;
    --tier-platinum: #e5e4e2;
}

/* Support progress bar */
.support-progress {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    width: 0;
    transition: width 1.5s ease-in-out;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-text);
}

/* Support message */
.support-message {
    display: flex;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(155, 89, 182, 0.2));
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease;
}

.support-message:hover {
    transform: translateY(-5px);
}

.message-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.message-content h2 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.message-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content .highlight {
    font-weight: bold;
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

/* Support tabs */
.support-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    padding: 12px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 8px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    flex: 1;
    min-width: 120px;
}

.tab-button:hover {
    background-color: rgba(52, 152, 219, 0.3);
}

.tab-button.active {
    background-color: var(--accent-blue);
    color: white;
}

.tab-content {
    display: none;
    margin-bottom: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    color: var(--accent-blue);
    margin-bottom: 10px;
}

/* Subscription tiers */
.subscription-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tier-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tier-header {
    padding: 20px;
    text-align: center;
    color: white;
}

.tier-card.bronze .tier-header {
    background: linear-gradient(135deg, var(--tier-bronze), #8b4513);
}

.tier-card.silver .tier-header {
    background: linear-gradient(135deg, var(--tier-silver), #a0a0a0);
}

.tier-card.gold .tier-header {
    background: linear-gradient(135deg, var(--tier-gold), #b8860b);
}

.tier-card.platinum .tier-header {
    background: linear-gradient(135deg, var(--tier-platinum), #a9a9a9);
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
}

.tier-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.tier-price {
    font-size: 1.2rem;
}

.tier-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tier-description {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--medium-text);
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tier-benefits li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.tier-benefits li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.tier-select {
    margin-top: auto;
    padding: 12px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.tier-select:hover {
    background-color: #2980b9;
}

.tier-cta {
    text-align: center;
    margin-top: 20px;
}

/* Donation amounts */
.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.amount-option {
    flex: 1;
    min-width: 100px;
    max-width: 200px;
    text-align: center;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.amount-option:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.amount-option.selected {
    border-color: var(--accent-blue);
    background-color: rgba(52, 152, 219, 0.3);
}

.amount-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.amount-value {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.amount-description {
    font-size: 0.9rem;
    color: var(--medium-text);
}

.custom-amount {
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.input-group {
    display: flex;
    margin-top: 10px;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.custom-amount input {
    flex: 1;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 8px 8px 0;
    color: var(--light-text);
    font-size: 1rem;
}

.donation-cta {
    text-align: center;
    margin-top: 20px;
}

/* Merchandise grid */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.merch-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.merch-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.merch-item:hover .merch-image img {
    transform: scale(1.05);
}

.merch-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.merch-content {
    padding: 20px;
}

.merch-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.merch-description {
    color: var(--medium-text);
    margin-bottom: 15px;
}

.merch-options {
    margin-bottom: 15px;
}

.merch-options-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.merch-options-select {
    width: 100%;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--light-text);
}

.merch-actions {
    display: flex;
    gap: 10px;
}

.merch-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-add-cart {
    background-color: var(--accent-blue);
    color: white;
}

.btn-add-cart:hover {
    background-color: #2980b9;
}

.btn-details {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.btn-details:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Digital products grid */
.digital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.digital-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.digital-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.digital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.digital-item:hover .digital-image img {
    transform: scale(1.05);
}

.digital-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-green);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.digital-content {
    padding: 20px;
}

.digital-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-green);
}

.digital-description {
    color: var(--medium-text);
    margin-bottom: 15px;
}

.digital-actions {
    display: flex;
    gap: 10px;
}

.digital-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-purchase {
    background-color: var(--accent-green);
    color: white;
}

.btn-purchase:hover {
    background-color: #27ae60;
}

/* Special events grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.event-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-item:hover .event-image img {
    transform: scale(1.05);
}

.event-deadline {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-yellow);
}

.event-description {
    color: var(--medium-text);
    margin-bottom: 15px;
}

.event-progress {
    margin-bottom: 15px;
}

.event-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.event-progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.event-progress-fill {
    height: 100%;
    background-color: var(--accent-yellow);
    width: 0;
    transition: width 1.5s ease-in-out;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.event-amount {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
}

.event-amount button {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-amount button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.event-amount input {
    flex: 1;
    background: none;
    border: none;
    text-align: center;
    color: var(--light-text);
    font-size: 1rem;
    padding: 0 10px;
}

.btn-support-event {
    padding: 10px 20px;
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-support-event:hover {
    background-color: #f39c12;
}

/* Payment methods */
.payment-methods {
    margin-bottom: 40px;
    text-align: center;
}

.payment-methods h2 {
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.payment-method {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.payment-method:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.payment-method.selected {
    background-color: rgba(52, 152, 219, 0.3);
    border: 2px solid var(--accent-blue);
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.payment-method[data-id="paypal"] .payment-icon {
    color: #0079C1;
}

.payment-method[data-id="venmo"] .payment-icon {
    color: #3D95CE;
}

.payment-method[data-id="cashapp"] .payment-icon {
    color: #00D632;
}

.payment-method[data-id="apple"] .payment-icon {
    color: #000000;
}

.payment-method[data-id="google"] .payment-icon {
    color: #4285F4;
}

.payment-method[data-id="crypto"] .payment-icon {
    color: #F7931A;
}

.payment-method[data-id="patreon"] .payment-icon {
    color: #FF424D;
}

.payment-method[data-id="kofi"] .payment-icon {
    color: #FF5E5B;
}

.payment-name {
    font-weight: 500;
}

/* Other ways to support */
.other-support-ways {
    margin-bottom: 40px;
    text-align: center;
}

.other-support-ways h2 {
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.other-ways-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.other-way {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-way:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.other-way-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.other-way-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--light-text);
}

.other-way-description {
    color: var(--medium-text);
    margin-bottom: 15px;
}

.other-way a {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.other-way a:hover {
    background-color: var(--accent-blue);
    color: white;
}

/* Community support */
.community-support {
    margin-bottom: 40px;
    text-align: center;
}

.community-support h2 {
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.top-supporters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.supporter {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.supporter:hover {
    transform: translateY(-5px) scale(1.05);
}

.supporter-initial {
    font-size: 1.8rem;
    color: var(--accent-blue);
}

.supporter-name {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--medium-text);
}

.community-message {
    margin-top: 40px;
}

.community-message p {
    margin-bottom: 15px;
}

/* FAQ section */
.donation-faq {
    margin-bottom: 40px;
}

.donation-faq h2 {
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    padding: 15px 20px;
    background-color: rgba(52, 152, 219, 0.2);
    margin: 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-item h3:hover {
    background-color: rgba(52, 152, 219, 0.3);
}

.faq-item h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active h3:after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

/* Sidebar specific styles */
.donor-spotlight {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

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

.spotlight-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--tier-gold);
}

.spotlight-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--light-text);
}

.spotlight-message {
    font-style: italic;
    color: var(--medium-text);
    margin-bottom: 15px;
    text-align: center;
}

.spotlight-tier {
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.gold-tier {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--tier-gold);
}

.silver-tier {
    background-color: rgba(192, 192, 192, 0.2);
    color: var(--tier-silver);
}

.bronze-tier {
    background-color: rgba(205, 127, 50, 0.2);
    color: var(--tier-bronze);
}

.platinum-tier {
    background-color: rgba(229, 228, 226, 0.2);
    color: var(--tier-platinum);
}

.recent-donations {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-name {
    font-weight: 500;
}

.recent-amount {
    color: var(--accent-green);
    font-weight: bold;
}

.supporter-benefits {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefits-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

.view-all-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
}

/* Modal styles */
.donation-modal, .thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002; /* Higher than mobile navigation */
    align-items: center;
    justify-content: center;
}

.donation-modal .modal-content {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1;
}

.close-modal:hover {
    background: rgba(231, 76, 60, 0.8);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-header h2 {
    color: var(--accent-blue);
}

.donation-summary {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.donation-summary h3 {
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: var(--medium-text);
}

.summary-value {
    font-weight: 500;
}

.payment-selection h3, .donor-info h3, .donation-message h3 {
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    min-width: 80px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-option:hover {
    background-color: rgba(52, 152, 219, 0.2);
}

.payment-option.selected {
    border-color: var(--accent-blue);
    background-color: rgba(52, 152, 219, 0.3);
}

.payment-option-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--accent-blue);
}

.payment-option-name {
    font-size: 0.9rem;
}

.donor-info {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light-text);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-check input[type="checkbox"] {
    width: auto;
}

.donation-message {
    margin-bottom: 20px;
}

.donation-message textarea {
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light-text);
    resize: vertical;
}

.terms-privacy {
    margin-bottom: 20px;
}

.terms-privacy a {
    color: var(--accent-blue);
    text-decoration: none;
}

.terms-privacy a:hover {
    text-decoration: underline;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.thank-you-modal .modal-content {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.thank-you-content {
    padding: 20px 0;
}

.thank-you-icon {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.thank-you-modal h2 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.thank-you-details {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: var(--medium-text);
}

.social-share {
    margin: 20px 0;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.share-btn {
    padding: 8px 15px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.facebook {
    background-color: #4267B2;
}

.share-btn.discord {
    background-color: #7289DA;
}

.next-steps {
    margin-top: 30px;
}

.next-steps-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 12px 25px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.9rem;
}

/* Loading spinner */
.loading-spinner {
    text-align: center;
    padding: 30px;
    color: var(--medium-text);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .support-message {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tier-cta, .donation-cta {
        margin-top: 30px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }

    .next-steps-options {
        flex-direction: column;
    }

    .next-steps-options a {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .stat-value {
        font-size: 1.2rem;
    }

    .tab-button {
        flex-basis: 100%;
    }

    .subscription-tiers {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        flex-direction: column;
    }

    .amount-option {
        max-width: none;
    }

    .merch-grid, .digital-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-modal .modal-content {
        padding: 15px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}