/* ========================================
   HOME PAGE - PREMIUM REDESIGN
   Ultra Modern & Cinematic Experience
   ======================================== */

/* Hero Section - Cinematic Overhaul */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background - Enhanced */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

/* Overlay com efeito de vinheta */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 26, 0.4) 50%, rgba(10, 14, 26, 0.9) 100%),
        linear-gradient(180deg, rgba(10, 14, 26, 0.6) 0%, rgba(10, 14, 26, 0.95) 100%);
    z-index: 1;
}

/* Partículas decorativas */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 97, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(201, 169, 97, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(201, 169, 97, 0.2), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes particlesFloat {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Hero Content - Ultra Premium */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Badge - Redesigned */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    box-shadow: 
        0 0 20px rgba(201, 169, 97, 0.3),
        inset 0 0 20px rgba(201, 169, 97, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.3), inset 0 0 20px rgba(201, 169, 97, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(201, 169, 97, 0.5), inset 0 0 30px rgba(201, 169, 97, 0.2);
    }
}

/* Game Title - Epic Enhancement */
.game-title {
    margin-bottom: 20px;
    position: relative;
}

.game-title .title-part {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 8px;
    line-height: 1.1;
    color: var(--text-color);
    text-shadow: 
        0 0 40px rgba(201, 169, 97, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.8);
    animation: titleShine 3s ease-in-out infinite;
}

.game-title .highlight {
    font-size: 5.5rem;
    background: linear-gradient(135deg, #f4e4c1 0%, var(--primary-color) 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.8));
    position: relative;
    display: inline-block;
    animation: titleGlowPremium 4s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1; }
}

@keyframes titleGlowPremium {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(201, 169, 97, 1));
    }
}

/* Hero Tagline - Elegant */
.hero-tagline {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.5);
}

/* Subtitle - Enhanced */
.hero .subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.9);
    max-width: 800px;
    margin: 0 auto 50px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

/* CTA Buttons - Premium Design */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-buttons .btn:hover::before {
    width: 400px;
    height: 400px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--dark-bg);
    box-shadow: 
        0 10px 40px rgba(201, 169, 97, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(201, 169, 97, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.cta-buttons .btn-secondary {
    background: rgba(26, 31, 46, 0.8);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.3);
}

.cta-buttons .btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Scroll Indicator - Premium */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: scrollBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.6));
}

.hero-scroll-indicator:hover i {
    color: var(--primary-light);
    animation-play-state: paused;
    transform: translateY(5px);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Decorative Elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--primary-color));
    opacity: 0.5;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(0deg, transparent, var(--primary-color));
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .game-title .title-part {
        font-size: 3rem;
    }
    
    .game-title .highlight {
        font-size: 4rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .game-title .title-part {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .game-title .highlight {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }
    
    .hero .subtitle {
        font-size: 1.05rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .game-title .title-part {
        font-size: 1.8rem;
    }
    
    .game-title .highlight {
        font-size: 2.4rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .hero .subtitle {
        font-size: 0.95rem;
    }
}
