/* Navigation styles */
.quick-nav {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
}

.quick-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.quick-nav a {
    color: #2a5298;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.quick-nav a:hover {
    background: #2a5298;
    color: white;
    transform: translateY(-2px);
}

/* Section styles */
section {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

section h2 {
    color: #1e3c72;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Step guides */
.step-guide, .install-steps {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.step-guide ol, .install-steps ol {
    padding-left: 20px;
}

.step-guide li, .install-steps li {
    margin: 15px 0;
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Download section */
.download-options {
    display: grid;
    gap: 20px;
}

.download-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

/* Referral section */
.referral-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.bonus-details {
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bonus-details ul {
    list-style: none;
    padding: 0;
}

.bonus-details li {
    margin: 10px 0;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-details li:before {
    content: "→";
    color: #2a5298;
}

/* Safety features */
.safety-features ul {
    list-style: none;
    padding: 0;
}

.safety-features li {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Withdrawal section */
.withdrawal-steps {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.payment-methods {
    margin-top: 30px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-methods ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.payment-methods li {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-methods li:hover {
    transform: translateY(-2px);
    background: #2a5298;
    color: white;
}

/* FAQ section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: bold;
}

.faq-answer {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Footer styles */
footer {
    background: #1e3c72;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .quick-nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-nav a {
        display: block;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.6s ease-out;
}

/* Back to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2a5298;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
} 