/* Borderlands 4 Landing Page Custom Styles */

/* Hero Section Animations */
.hero-section h1 {
    animation: fadeInUp 1.5s ease-out;
}

.hero-character {
    animation: fadeInUp 2s ease-out 0.5s both;
}

/* Content Animations */
.main-content-section h2,
.main-content-section h3 {
    animation: fadeInUp 1s ease-out;
}

.content-text p {
    animation: fadeInLeft 1s ease-out;
    animation-fill-mode: both;
}

.content-text p:nth-child(1) { animation-delay: 0.2s; }
.content-text p:nth-child(2) { animation-delay: 0.4s; }
.content-text p:nth-child(3) { animation-delay: 0.6s; }

/* CTA Button Hover Effects */
.cta-section .btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
    background: #78b800 !important;
}

/* Video Section Enhancements */
.video-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
}

.rtx-badge {
    animation: pulse 2s infinite;
}

/* DLSS Section Enhancements */
.gameplay-screenshot {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.gameplay-screenshot:hover {
    transform: scale(1.02);
}

.fps-badge {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Pack Items Hover Effects */
.pack-item {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pack-item:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* RTX Products Hover Effects */
.rtx-product {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
}

.rtx-product:hover {
    background: #040404;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.rtx-product .btn {
    transition: all 0.3s ease;
}

.rtx-product .btn:hover {
    background: #78b800 !important;
    transform: scale(1.05);
}

/* Featured Products Enhancements */
.product-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #78b800;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

/* Footer Enhancements */
.footer-logos img {
    transition: all 0.3s ease;
}

.footer-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive Images */
.hero-banner-mobile,
.video-thumbnail-mobile,
.gameplay-image-mobile,
.gilded-glory-banner-mobile,
.rtx-image-mobile,
.footer-logo-mobile,
.nvidia-logo-mobile {
    display: none !important;
}

.hero-banner-desktop,
.video-thumbnail-desktop,
.gameplay-image-desktop,
.gilded-glory-banner-desktop,
.rtx-image-desktop,
.footer-logo-desktop,
.nvidia-logo-desktop {
    display: block !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show mobile images, hide desktop images */
    .hero-banner-mobile,
    .video-thumbnail-mobile,
    .gameplay-image-mobile,
    .gilded-glory-banner-mobile,
    .rtx-image-mobile,
    .footer-logo-mobile,
    .nvidia-logo-mobile {
        display: block !important;
    }
    
    .hero-banner-desktop,
    .video-thumbnail-desktop,
    .gameplay-image-desktop,
    .gilded-glory-banner-desktop,
    .rtx-image-desktop,
    .footer-logo-desktop,
    .nvidia-logo-desktop {
        display: none !important;
    }
    
    /* Responsive Typography */
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .main-content-section h2 {
        font-size: 2rem !important;
    }
    
    .main-content-section h3 {
        font-size: 1.8rem !important;
    }
    
    .content-paragraph {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
    }
    
    .gilded-glory-section h1 {
        font-size: 2.5rem !important;
    }
    
    .pack-title {
        font-size: 1rem !important;
    }
    
    .rtx-product-title {
        font-size: 1rem !important;
    }
    
    .rtx-product-subtitle {
        font-size: 0.9rem !important;
    }
    
    .footer-text {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    /* Responsive Typography for Mobile */
    .hero-title {
        font-size: 2rem !important;
    }
    
    .main-content-section h2 {
        font-size: 1.8rem !important;
    }
    
    .main-content-section h3 {
        font-size: 1.5rem !important;
    }
    
    .content-paragraph {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .gilded-glory-section h1 {
        font-size: 2rem !important;
    }
    
    .pack-title {
        font-size: 0.9rem !important;
    }
    
    .rtx-product-title {
        font-size: 0.9rem !important;
    }
    
    .rtx-product-subtitle {
        font-size: 0.8rem !important;
    }
    
    .footer-text {
        font-size: 0.7rem !important;
    }
    
    .cta-section .btn {
        padding: 15px 30px !important;
        font-size: 1.2rem !important;
    }
    
    /* Mobile-specific image adjustments */
    .hero-image-mobile {
        max-height: 250px !important;
    }
    
    .pack-image-mobile {
        max-height: 120px !important;
    }
    
    .rtx-image-mobile {
        max-height: 60px !important;
    }
    
    .footer-logo-mobile {
        max-height: 30px !important;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.8), 0 0 40px rgba(0, 255, 0, 0.6);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #8B0000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DC143C;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */

/* Print Styles */
@media print {
    .hero-section,
    .video-section,
    .cta-section {
        display: none;
    }
    
    .main-content-section,
    .dlss-section,
    .gilded-glory-section {
        background: white !important;
        color: black !important;
    }
}
