/* PocketOption-inspired styles */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/trading-pattern.png');
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card {
    background: #2c2c3a;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0d6efd;
}

.awards-section {
    background-color: #1e2130;
    padding: 60px 0;
}

.award-item {
    text-align: center;
    padding: 20px;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffc107;
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0d6efd;
}

.mobile-app-section {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    padding: 80px 0;
}

.app-screenshot {
    max-width: 80%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-badge {
    height: 50px;
    margin: 10px;
}

.platform-card {
    background-color: #2c2c3a;
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0d6efd;
}