/* Entertainment Hero Widget Styles */
.eh-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 3%;
}

.eh-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    z-index: 1;
}

.eh-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    z-index: 2;
}

/* Atmospheric Effects */
.eh-fog {
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/fog.png');
    opacity: 0.15;
    z-index: 3;
    animation: fogDrift 60s linear infinite;
    pointer-events: none;
}

@keyframes fogDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.eh-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.eh-content {
    max-width: 800px;
    text-align: left;
}

.eh-title {
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.eh-title-text {
    font-size: 85px;
    font-weight: 300;
    letter-spacing: -1px;
}

.eh-title-dot {
    color: #E87722;
    font-size: 85px;
    line-height: 0;
}

.eh-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 50px;
}

/* BUTTONS */
.eh-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.eh-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    border: 1px solid rgba(232, 119, 34, 0.4);
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    white-space: nowrap;
}

.eh-btn i {
    font-size: 14px;
    color: #E87722;
    transition: transform 0.4s ease;
}

.eh-btn:hover {
    border-color: #E87722;
    background: rgba(232, 119, 34, 0.05);
    box-shadow: 0 0 20px rgba(232, 119, 34, 0.2);
    transform: translateY(-2px);
}

.eh-btn:hover i {
    transform: translateX(5px);
}

/* Entrance Animations */
.eh-title,
.eh-subtitle,
.eh-btn {
    opacity: 0;
    transform: translateY(30px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .eh-title-text {
        font-size: 65px;
    }

    .eh-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .eh-title-text {
        font-size: 45px;
    }

    .eh-title-dot {
        font-size: 45px;
    }

    .eh-wrapper {
        padding: 100px 30px;
        align-items: flex-start;
    }

    .eh-buttons {
        flex-direction: column;
    }

    .eh-btn {
        width: 100%;
        justify-content: space-between;
    }
}