/* BitTrust Styles */
.bittrust-currency-page {
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    background: #fff;
}
.bittrust-currency-page h1, .bittrust-currency-page h2, .bittrust-currency-page h3 {
    font-family: 'Poppins', sans-serif;
}
.bt-light-bg {
    background: #F5F7FA;
}
.bt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}
.bt-hero {
    background: #1A2235;
    color: #fff;
    padding: 100px 20px;
}
.bt-label {
    color: #E0A100;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}
.bt-h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}
.bt-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.bt-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bt-btn-primary {
    background: #E0A100;
    color: #1A2235;
}
.bt-btn-primary:hover {
    box-shadow: 0 0 15px rgba(224, 161, 0, 0.5);
    color: #1A2235;
}
.bt-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    margin-left: 15px;
}
.bt-h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1A2235;
}
.bt-desc-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #475569;
}
.bt-grid {
    display: grid;
    gap: 30px;
}
.bt-currencies-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.bt-why-grid, .bt-how-grid, .bt-loc-grid {
    grid-template-columns: repeat(4, 1fr);
}
.bt-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.bt-curr-card {
    text-align: center;
}
.bt-card:hover {
    transform: translateY(-5px);
    border-color: #E0A100;
    box-shadow: 0 10px 15px -3px rgba(224, 161, 0, 0.2);
}
.bt-icon-wrap {
    color: #E0A100;
    font-size: 2rem;
    margin-bottom: 20px;
}
.bt-icon-wrap svg {
    width: 2rem;
    height: 2rem;
    fill: #E0A100;
}
.bt-card h3 {
    font-size: 1.25rem;
    color: #1A2235;
    margin-bottom: 15px;
}
.bt-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}
.bt-step-card {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}
.bt-step-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(224, 161, 0, 0.2);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.bt-step-card h3 {
    font-size: 1.25rem;
    color: #1A2235;
    margin-bottom: 15px;
}
.bt-step-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}
.bt-link-btn {
    display: inline-block;
    margin-top: 15px;
    color: #E0A100;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.bt-link-btn:hover {
    color: #1A2235;
}
@media (max-width: 1024px) {
    .bt-why-grid, .bt-how-grid, .bt-loc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .bt-h1 { font-size: 2.2rem; }
    .bt-h2 { font-size: 1.8rem; }
    .bt-hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .bt-btn-secondary { margin-left: 0; text-align: center; }
    .bt-why-grid, .bt-how-grid, .bt-loc-grid {
        grid-template-columns: 1fr;
    }
}