.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../assets/images/background.HEIC');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: -1;    
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.hero-title span {
    color: var(--accent-color);
}

.gear-card {
    background: rgba(26, 26, 26, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.gear-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.gear-card img {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
    max-width: 300px;
}