/* Hero Visual Component Styles */

.hero-trade-card {
    background-color: #191d23e7;
    backdrop-filter: blur(10px);
    border-radius: 19px;
    border: 1px solid rgba(128, 128, 128, 0.123);
    box-shadow: 0px 0px 30px -4px rgba(0, 255, 153, 0.3);
    padding: 18px;
    width: 100%;
    box-sizing: border-box;
}

.hero-trade-header {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.123);
}

.hero-trade-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.hero-screenshot-container {
    width: 100%;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.123);
    background-color: #0a0d0f;
    max-height: 200px;
}

.hero-chart-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 200px;
}

.hero-trade-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-field-label {
    font-size: 12px;
    font-weight: 500;
    color: #86909a;
    margin: 0;
}

.hero-field-input {
    width: 100%;
    height: 34px;
    padding: 0 12px;
    box-sizing: border-box;
    color: white;
    background-color: #15181ca2;
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.123);
    font-size: 13px;
    font-weight: 400;
    outline: none;
    cursor: default;
}

.hero-field-input:focus {
    outline: 2px solid #00ff99;
}

.hero-validation-panel {
    background-color: #15181c42;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(128, 128, 128, 0.08);
}

.hero-validation-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hero-validation-item:last-child {
    margin-bottom: 0;
}

.hero-validation-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-validation-icon.success {
    color: #00ff99;
}

.hero-validation-icon.warning {
    color: #ffaa00;
}

.hero-validation-text {
    font-size: 13px;
    font-weight: 400;
    color: white;
    margin: 0;
}

.hero-trade-status {
    margin-bottom: 14px;
}

.hero-status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background-color: #2a1f1f;
    border: 1px solid rgba(255, 85, 85, 0.3);
}

.hero-status-indicator.blocked i {
    width: 18px;
    height: 18px;
    color: #ff5555;
}

.hero-status-text {
    font-size: 13px;
    font-weight: 600;
    color: #ff5555;
    margin: 0;
}

.hero-place-trade-button {
    width: 100%;
    height: 38px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    transition: 200ms;
    background-color: #1a1a1a;
    color: #4a4a4a;
    border: 1px solid rgba(128, 128, 128, 0.1);
}

.hero-place-trade-button:enabled {
    background-color: #00ff99;
    color: black;
    box-shadow: 0px 0px 35px -10px #00ff99;
    cursor: pointer;
}

.hero-place-trade-button:enabled:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-visual-component {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-text-section {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-visual-component {
        display: none;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 20px 15px;
    }
    
    .hero-text-section {
        width: 100%;
    }
}
