.hero-wrapper {
    width: 100%;
    height: 100vh;
    min-height: 600px; /* Ensure minimum height */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    transition: transform 0.3s ease-out;
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2rem);
}

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-description-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 3rem);
    width: 100%;
    max-width: 1000px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-game-logo {
    width: min(calc(100vh * 0.6), 70vw);
    max-width: 500px;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
}

.hero-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-comfortaa);
    font-weight: var(--font-comfortaa-medium);
    font-size: clamp(0.85rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    margin: 0;
    backdrop-filter: blur(1px);
    padding: 1rem;
}

.hero-wishlist-button {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 2vw, 16px);
    background: var(--primary-color);
    border: none;
    padding: clamp(12px, 3vw, 20px) clamp(20px, 5vw, 40px);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.hero-wishlist-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-wishlist-button:hover::before {
    left: 100%;
}

.hero-wishlist-button:hover {
    background: var(--primary-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
    filter: brightness(1.05);
}

.hero-wishlist-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.hero-wishlist-button .social-icon {
    width: clamp(24px, 5vw, 36px) !important;
    height: clamp(24px, 5vw, 36px) !important;
    fill: #FFF6E5 !important;
    transform: none !important;
    flex-shrink: 0;
}

.wishlist-text {
    color: #FFF6E5;
    font-family: var(--font-comfortaa);
    font-weight: var(--font-comfortaa-bold);
    font-size: clamp(1rem, 3vw, 1.7rem);
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .hero-wrapper {
        height: 90vh;
        min-height: 550px;
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .hero-main {
        gap: 2rem;
    }
    
    .hero-game-logo {
        width: min(calc(100vh * 0.5), 60vw);
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        height: 80vh;
        min-height: 450px;
    }
    
    .hero-image {
        transform: scale(1.1);
        object-position: center center;
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 1.2rem;
    }
    
    .hero-main {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
    }
    
    .hero-game-logo {
        width: min(80vw, 350px);
        max-width: 350px;
    }
      .hero-description {
        font-size: clamp(0.8rem, 3.5vw, 1.2rem);
        padding: 0.8rem;
        line-height: 1.6;
    }
    
    .hero-description-wrapper {
        max-width: 90%;
    }
    
    .wishlist-text {
        font-size: clamp(0.9rem, 4vw, 1.4rem);
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-image {
        transform: scale(1.2);
        object-position: center center;
    }
    
    .hero-content {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .hero-game-logo {
        width: min(85vw, 280px);
        max-width: 280px;
    }
      .hero-description {
        font-size: clamp(0.7rem, 3.5vw, 1rem);
        padding: 0.6rem;
        line-height: 1.5;
    }
    
    .hero-wishlist-button {
        padding: 10px 20px;
        min-height: 50px;
        gap: 8px;
    }
    
    .wishlist-text {
        font-size: clamp(0.8rem, 4vw, 1.2rem);
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-wishlist-button .social-icon {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 320px) {
    .hero-wrapper {
        min-height: 400px;
    }
    
    .hero-image {
        transform: scale(1.3);
        object-position: center center;
    }
    
    .hero-content {
        gap: 0.8rem;
    }
    
    .hero-game-logo {
        width: min(90vw, 240px);
        max-width: 240px;
    }
      .hero-description {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .hero-wishlist-button {
        padding: 8px 16px;
        min-height: 45px;
    }
    
    .wishlist-text {
        font-size: 0.9rem;
    }
}

/* High contrast mode for better accessibility */
@media (prefers-contrast: high) {
    .hero-wrapper::after {
        background: radial-gradient(
            circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 20%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
    
    .hero-description {
        color: #ffffff;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
        background: rgba(0, 0, 0, 0.3);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-image {
        transition: none;
    }
    
    .hero-wishlist-button {
        transition: none;
    }
    
    .hero-wishlist-button::before {
        transition: none;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-wrapper {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-image {
        transform: scale(1.1);
        object-position: center 40%;
    }
    
    .hero-content {
        gap: 0.8rem;
    }
    
    .hero-main {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-game-logo {
        width: min(50vh, 40vw);
        max-width: 250px;
    }
      .hero-description {
        font-size: clamp(0.6rem, 2vw, 0.9rem);
        padding: 0.4rem;
    }
}
