/* ===== CSS Variables (Repeated for completeness) ===== */
:root {
    --primary: #1a3a5f;
    --secondary: #2a5a8c;
    --accent: #e6a23c;
    --accent-secondary: #16a34a;
    --premium-blue: #1e88e5;
    --premium-green: #43a047;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --transition: all 0.3s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background-color: var(--dark);
    color: #cbd5e1;
    padding: 5rem 0 2.5rem;
}

.block0 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footerdivs_main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footerbottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer_logo::before {
    content: "✦";
    color: var(--accent);
    font-size: 2rem;
}

.footerdivs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.footerlinks {
    list-style: none;
}

.footertop {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.footertop::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #f59e0b;
}

.footerlinks li {
    margin-bottom: 1rem;
}

.footermenu {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
    padding: 0.3rem 0;
}

.footermenu:hover {
    color: var(--accent);
    transform: translateX(8px);
}

/* Footer Icons */
.footermenu i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.footer_line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 3rem 0;
}

.footer_brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.imagefooter {
    display: inline-flex;
    align-items: center;
}

.logowhite {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.footertext {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 800px;
}

.footermisc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footermisc strong {
    color: var(--accent);
    font-weight: 600;
}

/* Social Icons */
.footer_social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer_social .image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    width: 56px;
    height: 56px;
}

.footer_social .image:hover {
    background-color: rgba(230, 162, 60, 0.1);
    transform: translateY(-5px) scale(1.1);
}

.footer_social img {
    display: block;
    filter: grayscale(1) brightness(1.5);
    transition: var(--transition);
}

.footer_social .image:hover img {
    filter: grayscale(0) brightness(1);
}

/* Trading Disclaimer */
.trading-disclaimer {
    background-color: rgba(220, 38, 38, 0.1);
    border-left: 4px solid #dc2626;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.trading-disclaimer i {
    color: #dc2626;
    margin-right: 8px;
}

/* Copyright Info */
.copyright-info {
    margin: 1rem 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Platforms Supported */
.platforms-supported {
    background-color: rgba(22, 163, 74, 0.1);
    border-left: 4px solid var(--accent-secondary);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.platforms-supported i {
    color: var(--accent-secondary);
    margin-right: 8px;
}

.platforms-supported strong {
    color: var(--accent);
}

/* ===== Responsive Footer ===== */
@media (max-width: 992px) {
    .footerdivs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footerbottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footerdivs {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer_social {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer_logo {
        font-size: 1.5rem;
    }
    
    .footertop {
        font-size: 1.1rem;
    }
    
    .footer_social .image {
        width: 48px;
        height: 48px;
        padding: 0.6rem;
    }
    
    .platforms-supported {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .footer_social {
        gap: 0.8rem;
    }
    
    .footer_social .image {
        width: 44px;
        height: 44px;
        padding: 0.5rem;
    }
    
    .footer_social img {
        width: 24px;
        height: 24px;
    }
}

/* ===== CLEAN FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
    color: #e2e8f0;
    margin-top: 4rem;
}

.footer-main {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-logo {
    border-radius: 8px;
    background: white;
    padding: 3px;
}

.footer-brand-name {
    color: white;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #e6a23c;
    transform: translateY(-3px);
    color: #1a3a5f;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column {
    margin-bottom: 0;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(230, 162, 60, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #e6a23c;
    transform: translateX(5px);
}

.footer-links i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-cta {
    background: rgba(230, 162, 60, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border: 1px solid rgba(230, 162, 60, 0.2);
}

.cta-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cta-content p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}

.footer-cta-btn {
    background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #e6a23c 100%);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-info,
.risk-warning,
.copyright,
.platforms {
    text-align: center;
}

.company-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.company-address {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.risk-warning p {
    color: #feb2b2;
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.platforms p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.platforms strong {
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .footer-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-name,
    .risk-warning p,
    .copyright p,
    .platforms p {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-cta {
        padding: 1.25rem;
    }
    
    .cta-content h4 {
        font-size: 1.1rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
}

/* ===== UPDATED FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
    color: #e2e8f0;
    margin-top: 4rem;
    font-size: 0.95rem;
}

.footer-main {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-logo {
    border-radius: 8px;
    background: white;
    padding: 3px;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-name {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #e6a23c;
    transform: translateY(-3px);
    color: #1a3a5f;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column {
    margin-bottom: 0;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(230, 162, 60, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading i {
    color: #e6a23c;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    padding: 4px 0;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #e6a23c;
    transform: translateX(5px);
}

.footer-links i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.footer-cta {
    background: rgba(230, 162, 60, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border: 1px solid rgba(230, 162, 60, 0.2);
    margin-top: 2rem;
}

.cta-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cta-content p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
    max-width: 500px;
}

.footer-cta-btn {
    background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #e6a23c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 162, 60, 0.3);
}

.footer-bottom {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-info,
.payment-methods,
.risk-warning,
.copyright {
    text-align: center;
}

.company-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.company-address {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-title {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.crypto-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.crypto-icon:hover {
    background: rgba(230, 162, 60, 0.2);
    border-color: rgba(230, 162, 60, 0.5);
}

.risk-warning {
    max-width: 800px;
    margin: 0 auto;
}

.risk-warning p {
    color: #feb2b2;
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.risk-warning i {
    color: #f59e0b;
    margin-top: 3px;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .footer-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-name,
    .risk-warning p,
    .copyright p {
        justify-content: center;
        text-align: center;
    }
    
    .risk-warning p {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-cta {
        padding: 1.25rem;
    }
    
    .cta-content h4 {
        font-size: 1.1rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .crypto-icons {
        gap: 0.5rem;
    }
    
    .crypto-icon {
        padding: 3px 8px;
        font-size: 0.8rem;
    }
}

/* Fix Footer CTA Button */
.footer-cta-btn {
    background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%) !important;
    color: white !important;
    border: none !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #e6a23c 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 162, 60, 0.3);
}