/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
}

.hero {
    height: 100vh;
    background: url('../images/trade.jpg') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    filter: brightness(1.2);
}

.product-card {
    border: none;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc3545;
}

.btn-orange {
    background-color: #ff9500;
    border-color: #ff9500;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #dc3545;
}

/* Risk Disclosure Specific */
.risk-disclosure-content {
    font-size: 16px;
    line-height: 1.6;
}

.risk-disclosure-content h1, .risk-disclosure-content h2 {
    color: #fff;
    border-bottom: 2px solid #dc3545; /* Matches your danger/red theme */
    padding-bottom: 0.5rem;
}

.risk-disclosure-content strong {
    font-weight: bold;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}