.bittrust-referral-b046bb46 {
    padding: 80px 20px 40px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

.bt-ref-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

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

.bittrust-referral-b046bb46 {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Left Side */
.bt-ref-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bt-ref-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    opacity: 0.9;
}

.bt-ref-headline {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.bt-ref-subheadline {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0 20px;
    max-width: 500px;
}

.bt-ref-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.bt-ref-btn {
    padding: 16px 32px;
    border-radius: 8px;
    color: #0A0E17;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bt-ref-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(224, 161, 0, 0.3);
    color: #0A0E17;
}

.bt-ref-sec-link {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.bt-ref-sec-link:hover {
    color: #FFFFFF;
}

/* Right Side - Dashboard UI */
.bt-ref-right {
    position: relative;
    padding: 20px;
}

.bt-dash-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bt-dash-header {
    margin-bottom: 24px;
}

.bt-dash-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A0AABF;
    margin-bottom: 8px;
}

.bt-dash-amount {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 12px;
}

.bt-dash-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bt-dash-chart {
    position: relative;
    height: 120px;
    margin: 30px 0;
}

.bt-dash-chart-line {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.bt-dash-chart-line path:first-child {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

.bt-dash-pulse {
    transform-origin: center;
    animation: pulse 2s infinite;
}

.bt-dash-profit {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-1 { top: 60px; left: 15%; animation: float 4s ease-in-out infinite 0.5s; }
.float-2 { top: 30px; left: 45%; animation: float 4s ease-in-out infinite 1s; }
.float-3 { top: 0px; right: 10%; animation: float 4s ease-in-out infinite 1.5s; }

.bt-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.bt-dash-stat {
    text-align: center;
}

.bt-dash-label {
    font-size: 12px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bt-dash-value {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Decorative Elements */
.bt-ref-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.15;
}

.bt-ref-decor-1 {
    width: 300px;
    height: 300px;
    background: #E0A100;
    top: -50px;
    right: -50px;
}

.bt-ref-decor-2 {
    width: 200px;
    height: 200px;
    background: #4F46E5;
    bottom: -50px;
    left: 50px;
}

/* Disclaimer */
.bt-ref-disclaimer-wrap {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.bt-ref-disclaimer {
    font-size: 12px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .bt-ref-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bt-ref-left {
        text-align: center;
        align-items: center;
    }
    
    .bt-ref-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bittrust-referral-b046bb46 {
        padding: 60px 15px 30px;
    }
    
    .bt-ref-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .bt-ref-btn {
        width: 100%;
    }
    
    .bt-dash-card {
        padding: 24px 20px;
    }
    
    .bt-dash-stats {
        gap: 8px;
    }
    
    .bt-dash-value {
        font-size: 14px;
    }
}
