.calc-0c1dad80-container {
    background: transparent !important;
    width: 100%;
    box-sizing: border-box;
}

.calc-0c1dad80-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.calc-0c1dad80-card {
    background: #11161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-0c1dad80-card:hover {
    border-color: rgba(140, 216, 30, 0.3);
    box-shadow: 0 12px 40px rgba(140, 216, 30, 0.08);
    transform: translateY(-2px);
}

.calc-0c1dad80-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0%200%20200%20200'%20xmlns='http://www.w3.org/200%20/svg'%3E%3Cfilter%20id='noiseFilter'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.65'%20numOctaves='3'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.calc-label-0c1dad80 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    z-index: 2;
}

.calc-val-0c1dad80 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.text-white-0c1dad80 {
    color: #ffffff;
}

.main-metric-0c1dad80 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-top: 8px;
    letter-spacing: -1.5px;
    z-index: 2;
    transition: color 0.3s ease;
}

.sub-metric-0c1dad80 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: -0.5px;
    z-index: 2;
}

.accent-neon-0c1dad80 {
    color: #8CD81E;
}

.accent-blue-0c1dad80 {
    color: #1C95FF;
}

.calc-0c1dad80-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.calc-0c1dad80-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-0c1dad80-row-outputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    z-index: 2;
}

.calc-0c1dad80-output-block {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.block-payback-0c1dad80 {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.progress-track-0c1dad80 {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin: 12px 0 8px 0;
}

.progress-fill-0c1dad80 {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1C95FF 0%, #8CD81E 100%);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-labels-0c1dad80 {
    display: flex;
    justify-content: space-between;
}

.progress-labels-0c1dad80 span {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.slider-wrapper-0c1dad80 {
    position: relative;
    width: 100%;
    height: 6px;
    display: flex;
    align-items: center;
}

.calc-slider-0c1dad80 {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.calc-slider-0c1dad80::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: transparent;
    border-radius: 4px;
}

.calc-slider-0c1dad80::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #11161d;
    box-shadow: 0 0 10px rgba(140, 216, 30, 0.4);
    cursor: pointer;
    margin-top: -5px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-slider-0c1dad80::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: #8CD81E;
}

@keyframes fadeInUp-0c1dad80 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load-0c1dad80 {
    animation: fadeInUp-0c1dad80 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@media (max-width: 991px) {
    .calc-0c1dad80-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .calc-0c1dad80-card {
        padding: 24px;
    }
    .main-metric-0c1dad80 {
        font-size: 38px;
    }
    .sub-metric-0c1dad80 {
        font-size: 22px;
    }
}
