/* Donate Page - Modern Compact Design */

.donate-page {
    min-height: calc(100vh - 80px);
    padding-top: 90px;
    padding-bottom: 2rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 100%);
}

/* Hero Section - Compact */
.donate-hero {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
}

.donate-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.donate-hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.donate-benefits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(147, 51, 234, 0.25);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1rem;
    color: #fbbf24;
}

.benefit-item span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Player Input - Compact */
.player-input-section {
    margin-bottom: 1.5rem;
}

.input-card {
    background: rgba(30, 41, 59, 0.9);
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: 16px;
    padding: 1.25rem;
    max-width: 550px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.input-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.input-card p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.input-group {
    display: flex;
    gap: 0.75rem;
}

.input-group input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: 12px;
    color: white;
    font-size: 1.05rem;
    transition: all 0.3s;
    font-weight: 500;
}

.input-group input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-group .btn {
    padding: 0.875rem 1.75rem !important;
    white-space: nowrap;
    border-radius: 12px !important;
    font-weight: 600;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.email-input-group input[type="email"] {
    width: 100%;
    transition: all 0.3s;
}

.email-input-group input[type="email"]:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

.email-input-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.email-input-group label i {
    color: #fbbf24;
}

.player-info {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    animation: slideDown 0.3s ease-out;
}

.player-info.error {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

.player-info h4 {
    margin-bottom: 0.5rem;
    color: #10b981;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-info.error h4 {
    color: #ef4444;
}

.player-info p {
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Donation Packages - Compact Grid */
.donation-packages {
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #fbbf24;
}

.section-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.package-category {
    margin-bottom: 1.5rem;
}

.package-category h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.premium-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    padding: 0.25rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: rgba(30, 41, 59, 0.85);
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #9333ea;
    box-shadow: 0 15px 45px rgba(147, 51, 234, 0.4);
}

.package-card.highlight {
    border-width: 3px;
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.08);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.package-card.premium {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(79, 70, 229, 0.15) 100%);
    border-color: rgba(147, 51, 234, 0.6);
}

.package-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #9333ea;
    color: white;
    padding: 0.3rem 0.65rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(147, 51, 234, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.package-badge.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.package-badge.best {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.package-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.package-card.premium .package-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.package-details {
    margin: 0.75rem 0;
    padding: 0.65rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 8px;
}

.package-multiplier {
    font-size: 1rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.package-duration {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
}

.package-save {
    margin-top: 0.3rem;
    color: #10b981;
    font-weight: 700;
    font-size: 0.75rem;
}

.package-price {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.price-currency {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.package-card .btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.65rem 1rem !important;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s;
}

.package-card .btn:hover {
    transform: scale(1.05);
}

/* FAQ Section - Compact */
.donate-faq {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.donate-faq h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #fbbf24;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.faq-item {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(147, 51, 234, 0.25);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(147, 51, 234, 0.5);
    background: rgba(15, 23, 42, 0.8);
}

.faq-item h4 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .donate-page {
        padding-top: 90px;
    }
    
    .donate-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .donate-hero-content p {
        font-size: 0.9rem;
    }
    
    .donate-benefits {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .package-category h3 {
        font-size: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .input-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .donate-hero-content h1 {
        font-size: 1.4rem;
    }
    
    .package-card {
        padding: 0.85rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
}

/* Button Fix - Override main.css button styles */
.donate-page .btn-primary,
.donate-page .btn-secondary {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4) !important;
}

.donate-page .btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6) !important;
}

.donate-page .btn i {
    margin: 0 !important;
}

/* Footer Fix */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fbbf24;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0.5rem 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #9333ea;
}

.footer-section strong {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
