/* ========================================
   Piano Files Page Specific Styles
   ======================================== */

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.files-hero {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffe55c 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.files-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

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

.files-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.files-hero p {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.creator-badge {
    background: rgba(230, 57, 70, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    margin-top: 25px;
    display: inline-block;
    font-size: 0.9rem;
}

.creator-badge i {
    color: var(--accent-red);
    margin-right: 8px;
}

/* ----------------------------------------
   Files Grid
   ---------------------------------------- */
.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.file-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.file-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s;
}

.file-card:hover::before {
    left: 100%;
}

.file-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.file-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffe55c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.file-card:hover .file-icon {
    transform: scale(1.05);
}

.file-icon i {
    font-size: 2.5rem;
    color: var(--accent-red);
}

.file-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.file-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
}

/* Download Button */
.btn-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-red) 0%, #c82333 100%);
    color: var(--pure-white);
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    gap: 6px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-download:hover::before {
    left: 100%;
}

.btn-download i {
    margin-right: 8px;
    font-size: 1rem;
}

.btn-download:hover {
    background: linear-gradient(135deg, #c82333 0%, #a01e2c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.donation-note {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    letter-spacing: 0.3px;
}

/* ----------------------------------------
   Donation Callout Section
   ---------------------------------------- */
.donation-callout {
    background: linear-gradient(135deg, #fff9f0 0%, #fff3e3 100%);
    border-left: 5px solid var(--accent-red);
    border-radius: 20px;
    padding: 35px 40px;
    margin: 40px 0 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.donation-callout::before {
    content: '❤️';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    pointer-events: none;
}

.donation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulseHeart 2s ease-in-out infinite;
}

@keyframes pulseHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.donation-icon i {
    font-size: 2.2rem;
    color: var(--pure-white);
}

.donation-content {
    flex: 1;
}

.donation-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--accent-red);
    font-weight: 600;
}

.donation-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.donation-content strong {
    color: var(--accent-red);
    font-weight: 600;
}

/* Donate Button in Callout */
.btn-donate-callout {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #c82333 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-donate-callout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

/* ----------------------------------------
   M-Pesa Donation Section
   ---------------------------------------- */
.mpesa-donation {
    background: var(--pure-white);
    border-radius: 25px;
    padding: 45px;
    margin: 30px 0 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(230, 57, 70, 0.15);
    position: relative;
    overflow: hidden;
}

.mpesa-donation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-red), var(--primary-yellow));
}

.mpesa-donation h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.mpesa-donation h3 i {
    color: var(--accent-red);
    margin-right: 12px;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.donation-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.donation-card i:first-child {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 15px;
    display: inline-block;
}

.donation-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.paybill-details {
    background: var(--pure-white);
    padding: 18px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.paybill-details p {
    margin: 10px 0;
    font-size: 1rem;
}

.highlight-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-red);
    background: rgba(230, 57, 70, 0.08);
    padding: 6px 16px;
    border-radius: 25px;
    display: inline-block;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.instruction {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 15px 0 10px;
}

/* Donate Simple Button (in donation cards) */
.btn-donate-simple {
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #c82333 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-donate-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.donation-thanks {
    margin-top: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(230,57,70,0.08) 0%, rgba(255,215,0,0.08) 100%);
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    font-size: 1rem;
}

.donation-thanks i {
    color: var(--accent-red);
    margin-right: 10px;
}

/* ----------------------------------------
   Back Button
   ---------------------------------------- */
.back-home {
    text-align: center;
    padding: 40px 0 60px;
}

.btn-back {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--pure-white);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

/* ----------------------------------------
   Modal Styles (STK Push)
   ---------------------------------------- */
.donation-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--pure-white);
    margin: 20px auto;
    width: 90%;
    max-width: 550px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--accent-red) 0%, #c82333 100%);
    color: var(--pure-white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.modal-header h3 i {
    margin-right: 10px;
}

.modal-close {
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    line-height: 1;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Country Selector */
.country-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.country-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--primary-yellow);
    background: var(--pure-white);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.country-btn.active {
    background: var(--accent-red);
    color: var(--pure-white);
    border-color: var(--accent-red);
}

.country-btn:hover:not(.active) {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--accent-red);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--accent-red);
    margin-right: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #888;
}

/* Amount Buttons */
.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 10px 20px;
    background: var(--off-white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.amount-btn:hover {
    border-color: var(--accent-red);
    background: rgba(230, 57, 70, 0.05);
}

.amount-btn.active {
    background: var(--accent-red);
    color: var(--pure-white);
    border-color: var(--accent-red);
}

#customAmount {
    display: none;
    margin-top: 10px;
}

/* Donate Button in Modal */
.btn-donate {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #c82333 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.btn-donate:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Donation Status */
.donation-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    white-space: pre-line;
}

.donation-status.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.donation-status.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid #f44336;
}

/* ----------------------------------------
   Responsive Design
   ---------------------------------------- */
@media (max-width: 992px) {
    .files-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .donation-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .files-hero {
        padding: 40px 0;
    }
    
    .files-hero h1 {
        font-size: 1.8rem;
    }
    
    .files-hero p {
        font-size: 1rem;
    }
    
    .file-card {
        padding: 25px 20px;
    }
    
    .file-icon {
        width: 70px;
        height: 70px;
    }
    
    .file-icon i {
        font-size: 2rem;
    }
    
    .file-card h3 {
        font-size: 1.3rem;
    }
    
    .donation-callout {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }
    
    .donation-icon {
        width: 70px;
        height: 70px;
    }
    
    .donation-icon i {
        font-size: 1.8rem;
    }
    
    .donation-content h3 {
        font-size: 1.4rem;
    }
    
    .mpesa-donation {
        padding: 25px;
    }
    
    .mpesa-donation h3 {
        font-size: 1.4rem;
    }
    
    .donation-grid {
        gap: 20px;
    }
    
    .donation-card {
        padding: 25px;
        min-height: auto;
    }
    
    .donation-card h4 {
        font-size: 1.2rem;
    }
    
    .highlight-number {
        font-size: 1rem;
        letter-spacing: normal;
    }
    
    .modal-content {
        margin: 10px auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .amount-buttons {
        gap: 8px;
    }
    
    .amount-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .country-selector {
        gap: 10px;
    }
    
    .country-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .donation-thanks {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .btn-donate-simple,
    .btn-donate-callout,
    .btn-donate {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .files-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
    }
    
    .paybill-details p {
        font-size: 0.85rem;
    }
    
    .highlight-number {
        font-size: 0.9rem;
        padding: 4px 12px;
    }
}
/* Instrumental Card Styles */
.instrumental-card {
    background: linear-gradient(135deg, var(--pure-white) 0%, #fff9e6 100%);
    border: 2px solid var(--primary-yellow);
}

.audio-preview {
    margin: 15px 0;
    padding: 10px;
    background: var(--soft-gray);
    border-radius: 15px;
}

.preview-text {
    font-size: 0.85rem;
    color: var(--accent-red);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.audio-player {
    width: 100%;
    height: 40px;
    border-radius: 30px;
}

.btn-purchase {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 10px;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.btn-request {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red) 0%, #c82333 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--pure-white);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 15px 20px;
}

.close:hover {
    color: var(--accent-red);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffe55c 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header i {
    font-size: 3rem;
    color: var(--accent-red);
}

.modal-header h2 {
    margin-top: 10px;
    color: var(--text-dark);
}

.modal-body {
    padding: 20px;
}

.payment-info {
    background: var(--off-white);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.payment-info h3 {
    color: var(--accent-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.payment-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.payment-detail i {
    width: 30px;
    color: var(--accent-red);
}

.payment-instructions {
    background: rgba(40, 167, 69, 0.1);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.payment-instructions ol {
    margin-left: 20px;
    margin-top: 10px;
}

.payment-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.btn-whatsapp-send {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-whatsapp-send:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}
/* Donation Instructions Modal */
.donation-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
}

.donation-modal-content {
    background-color: var(--pure-white);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

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

.donation-modal-header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffe55c 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.donation-modal-header i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.donation-modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.donation-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
}

.donation-modal-close:hover {
    color: var(--accent-red);
}

.donation-modal-body {
    padding: 25px;
}

.donation-details {
    background: var(--off-white);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.donation-details h4 {
    color: var(--accent-red);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.donation-details p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.donation-details .highlight {
    font-weight: 700;
    color: var(--accent-red);
    font-size: 1.1rem;
}

.donation-instructions {
    background: rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.donation-instructions ol {
    margin-left: 20px;
    margin-top: 10px;
}

.donation-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.btn-whatsapp-confirm {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

.btn-whatsapp-confirm:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.donation-whatsapp-btn {
    margin: 20px 0;
}

.donation-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

.donation-note i {
    color: var(--accent-red);
    margin-right: 5px;
}
/* Audio Player Styling */
.audio-preview {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--off-white) 100%);
    border-radius: 15px;
    text-align: center;
}

.preview-text {
    font-size: 0.9rem;
    color: var(--accent-red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.audio-player {
    width: 100%;
    height: 45px;
    border-radius: 30px;
    margin: 10px 0;
}

.audio-player::-webkit-media-controls-panel {
    background-color: var(--primary-yellow);
}

.audio-player::-webkit-media-controls-play-button {
    background-color: var(--accent-red);
    border-radius: 50%;
}

.sample-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}