@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&display=swap');

.bt-full-rates-f413b965 {
    --bt-dark: #1A2235;
    --bt-bg-alt: #131928;
    --bt-gold: #E0A100;
    --bt-gold-hover: #f5b100;
    --bt-light: #ffffff;
    --bt-text: #a0a8b8;
    --bt-glass: rgba(255, 255, 255, 0.03);
    --bt-glass-border: rgba(255, 255, 255, 0.08);
    
    font-family: 'Inter', sans-serif;
    color: var(--bt-text);
    line-height: 1.6;
    background: var(--bt-dark);
    display: flex;
    flex-direction: column;
}

.bt-full-rates-f413b965 h1, .bt-full-rates-f413b965 h2, .bt-full-rates-f413b965 h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--bt-light);
    margin-top: 0;
}

.bt-section {
    padding: 80px 0;
    width: 100%;
}

.bt-bg-alt {
    background: var(--bt-bg-alt);
}

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

.bt-label {
    display: inline-block;
    color: var(--bt-gold);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Hero Section */
.bt-hero-section {
    text-align: center;
    padding: 100px 0 80px;
}

.bt-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bt-hero-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Common Section Header */
.bt-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.bt-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bt-section-header p {
    font-size: 1.1rem;
}

/* Cards Grid */
.bt-cards-grid {
    display: grid;
    gap: 30px;
    width: 100%;
}

.bt-grid-buy {
    grid-template-columns: repeat(4, 1fr);
}

.bt-grid-sell {
    grid-template-columns: repeat(5, 1fr);
}

/* Rate Card */
.bt-rate-card {
    background: var(--bt-glass);
    border: 1px solid var(--bt-glass-border);
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bt-rate-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-8px);
    border-color: var(--bt-gold);
    box-shadow: 0 10px 30px rgba(224, 161, 0, 0.1);
}

.bt-card-top {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bt-light);
    margin-bottom: 20px;
}

.bt-card-mid {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bt-gold);
    margin-bottom: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.bt-rate-card:hover .bt-card-mid {
    transform: scale(1.1);
}

.bt-card-bot {
    font-size: 0.9rem;
    color: var(--bt-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bt-card-highlight {
    border-color: var(--bt-gold);
    background: rgba(224, 161, 0, 0.05);
}

.bt-glow-anim {
    animation: bt-pulse 2s infinite;
}

@keyframes bt-pulse {
    0% { box-shadow: 0 0 0 0 rgba(224, 161, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(224, 161, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 161, 0, 0); }
}

.bt-card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--bt-gold);
    color: var(--bt-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Info Box */
.bt-info-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: transparent;
    border: 1px solid var(--bt-glass-border);
    padding: 40px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.bt-info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(224, 161, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bt-gold);
}

.bt-info-icon svg {
    width: 30px;
    height: 30px;
}

.bt-info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bt-info-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Box */
.bt-cta-box {
    background: linear-gradient(135deg, rgba(224,161,0,0.1) 0%, rgba(26,34,53,0) 100%);
    border: 1px solid var(--bt-glass-border);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bt-cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bt-cta-box p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.bt-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.bt-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.bt-btn-primary {
    background: var(--bt-gold);
    color: var(--bt-dark) !important;
}

.bt-btn-primary:hover {
    background: var(--bt-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 161, 0, 0.3);
}

.bt-btn-outline {
    border: 1px solid var(--bt-gold);
    color: var(--bt-gold) !important;
}

.bt-btn-outline:hover {
    background: rgba(224, 161, 0, 0.1);
    transform: translateY(-2px);
}

/* Animations */
.bt-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out forwards;
}

.bt-animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .bt-grid-sell {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .bt-grid-buy {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bt-hero-title {
        font-size: 2.5rem;
    }
    
    .bt-section-header h2 {
        font-size: 2rem;
    }
    
    .bt-grid-sell {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bt-info-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 500px) {
    .bt-grid-buy, .bt-grid-sell {
        grid-template-columns: 1fr;
    }
    
    .bt-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .bt-btn {
        width: 100%;
    }
}
