/* Additional styles for pages */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section h2 {
    color: #667eea;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.content-section h3 {
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin: 0.5rem 0;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #667eea;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.3rem;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #333;
    font-weight: 500;
}

.donation-options {
    margin: 2rem 0;
}

.donation-method {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-method h3 {
    color: #667eea;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.donation-method p {
    color: #555;
    margin: 0.5rem 0 1rem 0;
}

.donate-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0.5rem 0;
}

.donate-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.crypto-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.crypto-address code {
    background: #333;
    color: #00ff00;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}

.copy-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #229954;
    transform: translateY(-1px);
}

/* RTL adjustments for pages */
[dir="rtl"] .content-section ul {
    padding-right: 2rem;
    padding-left: 0;
}

[dir="rtl"] .crypto-address {
    flex-direction: row-reverse;
}

/* Buy Me a Coffee specific styles */
.bmc-donation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bmc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.bmc-qr {
    flex: 0 0 auto;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 10px;
}

.bmc-content {
    flex: 1;
    min-width: 300px;
}

.bmc-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.bmc-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bmc-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.bmc-link:hover {
    transform: scale(1.05);
}

.bmc-button {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bmc-button:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .content-section {
        padding: 0 1rem;
    }
    
    .contact-info,
    .donation-method {
        padding: 1.5rem;
    }
    
    .crypto-address {
        flex-direction: column;
        align-items: stretch;
    }
    
    .crypto-address code {
        min-width: auto;
        text-align: center;
    }
    
    .bmc-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .bmc-content {
        min-width: auto;
    }
    
    .bmc-button {
        width: 150px;
    }
}
