/* Donation Page Styles */

.donation-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://i.ibb.co/qN0MpR8/image.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
}

.donation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.donation-hero h1 {
    position: relative;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--rust-orange);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
}

.donation-hero p {
    position: relative;
    font-size: 1.5rem;
    color: var(--rust-light);
    max-width: 800px;
    margin: 0 auto;
}

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.donation-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.donation-intro h2 {
    font-size: 2.5rem;
    color: var(--rust-orange);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.donation-intro p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.donation-options {
    display: grid;
    gap: 3rem;
}

.donation-section {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(205, 65, 43, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.donation-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(205, 65, 43, 0.4);
}

.donation-section h2 {
    font-size: 2rem;
    color: var(--rust-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.donation-section h2 i {
    font-size: 1.8rem;
}

.donation-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Cryptocurrency Section */
.crypto-addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.crypto-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--rust-orange);
}

.crypto-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--rust-orange);
}

.crypto-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rust-light);
}

.crypto-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.crypto-address code {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    color: #ddd;
    white-space: normal;
    overflow: hidden;
    flex: 1;
    word-break: break-all;
    text-overflow: ellipsis;
    padding: 0.5rem 0;
}

.copy-btn {
    background: var(--rust-orange);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--rust-orange-hover);
    transform: scale(1.1);
}

/* Alternative Payment Methods */
.alt-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.payment-method {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--rust-orange);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--rust-orange);
}

.payment-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--rust-light);
}

.payment-method p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 0;
}

.discord-contact {
    text-align: center;
    margin-top: 2rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.discord-btn i {
    font-size: 1.4rem;
}

/* Perks Section */
.perks-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.perks-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.perks-list li i {
    color: var(--rust-orange);
    font-size: 1.2rem;
}

.note {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .donation-hero h1 {
        font-size: 3rem;
    }
    
    .donation-hero p {
        font-size: 1.2rem;
    }
    
    .donation-section {
        padding: 2rem 1.5rem;
    }
    
    .crypto-addresses,
    .alt-payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .donation-hero h1 {
        font-size: 2.5rem;
    }
    
    .donation-hero p {
        font-size: 1rem;
    }
    
    .donation-section h2 {
        font-size: 1.8rem;
    }
    
    .crypto-address {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .discord-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}