.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(11, 19, 32, 0.06);
}

.slider-track {
    display: flex;
    transition: transform 1.2s ease;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--card);
    background: rgba(11, 19, 32, 0.6);
    padding: 30px;
    border-radius: 12px;
    max-width: 80%;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.hero-text p {
    margin-bottom: 20px;
    color: #f8fafc;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    max-width: 100%;
}

.btn-accent:hover {
    background: rgb(56, 56, 255);
}