.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 0;
    background-color: #121214;
}

.hero-mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

#blockchainCanvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-mobile-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgb(204, 0, 0) 0%, rgba(165, 9, 9, 0.547) 80%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 600px;
    color: #ffffff;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(204, 0, 0, 0.2);
    color: #ff3333;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(204, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #cc0000;
}

.hero-text p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #cc0000;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
    border: none;
}

.btn-primary:hover {
    background-color: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.4);
}

.btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #4d0000;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
    background-color: #cc0000;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-bg-slider {
        display: none !important;
    }
    
    .hero-mobile-bg {
        display: block !important;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.2);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h1 span {
        color: #ffffff;
    }

    .hero-text p {
        font-size: 1rem;
        color: #ffffff;
    }

    .hero-tag {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .slider-controls {
        display: none !important;
    }
}