/* CSS Variables for Jupiter Plugin */
:root {
  --jupiter-plugin-primary: 255, 107, 0;
  --jupiter-plugin-background: 0, 0, 0;
  --jupiter-plugin-primary-text: 255, 255, 255;
  --jupiter-plugin-warning: 251, 191, 36;
  --jupiter-plugin-interactive: 33, 42, 54;
  --jupiter-plugin-module: 16, 23, 31;
}

/* Trade Banner Section */
.trade-banner-section {
    padding: 2rem 0;
    margin-top: 120px;
}

.trade-banner-card {
    background: linear-gradient(135deg,
        rgba(50, 30, 15, 0.6) 0%,
        rgba(70, 40, 20, 0.5) 50%,
        rgba(50, 30, 15, 0.6) 100%
    );
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 107, 0, 0.4);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 80px rgba(255, 107, 0, 0.15);
    transition: all 0.3s ease;
}

.trade-banner-card:hover {
    border-color: rgba(255, 107, 0, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8),
                0 0 100px rgba(255, 107, 0, 0.25);
}

.trade-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-banner-text {
    font-size: 1.5rem;
    color: #f0f0f0;
    font-weight: 400;
}

.trade-banner-highlight {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Jupiter Widget Section */
.jupiter-section {
    min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem 3rem 2rem;
}

.jupiter-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

#target-container {
    width: 100%;
    height: 640px;
    margin: 0 auto;
}

/* Trade Features Section */
.trade-features-section {
    padding: 4rem 0;
}

.trade-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trade-feature-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trade-feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
    background: rgba(26, 26, 26, 0.8);
}

.trade-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trade-feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.trade-feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .trade-banner-section {
        margin-top: 100px;
        padding: 1.5rem 0;
    }

    .trade-banner-card {
        padding: 2rem;
    }

    .trade-banner-text {
        font-size: 1.2rem;
    }

    .jupiter-section {
        padding: 2rem 1rem 2rem 1rem;
        min-height: auto;
    }

    .jupiter-container {
        max-width: 100%;
    }

    #target-container {
        height: 600px;
    }

    .trade-features-section {
        padding: 3rem 0;
    }

    .trade-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trade-banner-card {
        padding: 1.5rem;
    }

    .trade-banner-text {
        font-size: 1rem;
    }

    #target-container {
        height: 580px;
    }
}
