/* ============================================
   HotGameEventNew.com - Unique Stylesheet
   Unique Design with EventFlux Theme
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --eventflux-primary: #FF6B35;
    --eventflux-secondary: #004E89;
    --eventflux-accent: #FFD23F;
    --eventflux-dark: #1A1A2E;
    --eventflux-light: #F8F9FA;
    --eventflux-text: #2C3E50;
    --eventflux-text-light: #6C757D;
    --eventflux-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --eventflux-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --eventflux-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --eventflux-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --eventflux-shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.2);
    --eventflux-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--eventflux-text);
    background-color: var(--eventflux-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background Canvas */
.eventflux-canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    opacity: 1;
    will-change: contents;
    contain: layout style paint;
}

/* Container */
.eventflux-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
.eventflux-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--eventflux-transition);
}

.eventflux-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eventflux-logo-section {
    flex-shrink: 0;
}

.eventflux-logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.eventflux-logo-link:hover {
    transform: scale(1.05);
}

.eventflux-logo-img {
    height: 45px;
    width: auto;
    aspect-ratio: 180 / 45;
}

/* Desktop Navigation Menu */
.eventflux-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.eventflux-nav-item {
    position: relative;
}

.eventflux-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--eventflux-transition);
}

.eventflux-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--eventflux-primary);
    transition: width 0.3s ease;
}

.eventflux-nav-link:hover::after,
.eventflux-nav-link.eventflux-active::after {
    width: 100%;
}

.eventflux-nav-link:hover {
    color: var(--eventflux-accent);
}

.eventflux-nav-link.eventflux-active {
    color: var(--eventflux-primary);
}

/* Burger Menu Button */
.eventflux-burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.eventflux-burger-line {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--eventflux-transition);
}

.eventflux-burger-btn.active .eventflux-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.eventflux-burger-btn.active .eventflux-burger-line:nth-child(2) {
    opacity: 0;
}

.eventflux-burger-btn.active .eventflux-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.eventflux-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.eventflux-mobile-menu.active {
    right: 0;
}

.eventflux-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1003;
}

.eventflux-close-icon {
    position: absolute;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--eventflux-transition);
}

.eventflux-close-icon:nth-child(1) {
    transform: rotate(45deg);
}

.eventflux-close-icon:nth-child(2) {
    transform: rotate(-45deg);
}

.eventflux-close-btn:hover .eventflux-close-icon {
    background: var(--eventflux-primary);
}

.eventflux-mobile-nav {
    list-style: none;
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eventflux-mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.eventflux-mobile-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem 0;
    transition: var(--eventflux-transition);
}

.eventflux-mobile-link:hover,
.eventflux-mobile-link.eventflux-active {
    color: var(--eventflux-primary);
    padding-left: 10px;
}

/* Hero Section */
.eventflux-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.eventflux-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 1;
}

.eventflux-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    animation: eventflux-fade-in-up 1s ease-out;
}

@keyframes eventflux-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eventflux-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    content-visibility: auto;
    contain-intrinsic-size: auto 200px;
}

.eventflux-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--eventflux-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.eventflux-hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.eventflux-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.eventflux-cta-primary,
.eventflux-cta-secondary {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--eventflux-transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.eventflux-cta-primary {
    background: var(--eventflux-gradient-2);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}

.eventflux-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.6);
}

.eventflux-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.eventflux-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Brands Section */
.eventflux-brands-section {
    padding: 100px 0;
    background: #f8f9faba;
    position: relative;
}

.eventflux-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--eventflux-dark);
    position: relative;
}

.eventflux-section-subtitle {
    text-align: center;
    color: var(--eventflux-text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.eventflux-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.eventflux-brand-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--eventflux-shadow);
    transition: var(--eventflux-transition);
    position: relative;
    overflow: hidden;
}

.eventflux-brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--eventflux-gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.eventflux-brand-card:hover::before {
    transform: scaleX(1);
}

.eventflux-brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--eventflux-shadow-hover);
}

.eventflux-brand-image-wrapper {
    width: 200px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #272f36;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--eventflux-transition);
}

.eventflux-brand-card:hover .eventflux-brand-image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.eventflux-brand-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: var(--eventflux-transition);
    aspect-ratio: 200 / 120;
    height: auto;
}

.eventflux-brand-card:hover .eventflux-brand-img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.eventflux-brand-content {
    text-align: center;
}

.eventflux-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eventflux-dark);
    margin-bottom: 1rem;
}

.eventflux-brand-news {
    color: var(--eventflux-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.eventflux-brand-news strong {
    color: var(--eventflux-primary);
    font-weight: 600;
}

.eventflux-brand-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--eventflux-gradient-2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--eventflux-transition);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    text-align: center;
    width: 100%;
}

.eventflux-brand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 87, 108, 0.5);
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

/* Why Us Section */
.eventflux-why-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.eventflux-why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eventflux-why-text {
    animation: eventflux-slide-in-left 0.8s ease-out;
}

@keyframes eventflux-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.eventflux-why-intro {
    font-size: 1.2rem;
    color: var(--eventflux-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.eventflux-why-description {
    color: var(--eventflux-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.eventflux-inline-link {
    color: var(--eventflux-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--eventflux-transition);
}

.eventflux-inline-link:hover {
    text-decoration: underline;
}

.eventflux-features-list {
    list-style: none;
    margin: 2rem 0;
}

.eventflux-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9faba;
    border-radius: 15px;
    transition: var(--eventflux-transition);
}

.eventflux-feature-item:hover {
    background: #f0f0f0;
    transform: translateX(10px);
}

.eventflux-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.eventflux-feature-text {
    color: var(--eventflux-text);
    line-height: 1.6;
}

.eventflux-feature-text strong {
    color: var(--eventflux-dark);
    font-weight: 600;
}

.eventflux-why-conclusion,
.eventflux-why-final {
    color: var(--eventflux-text-light);
    margin-top: 1.5rem;
    line-height: 1.8;
}

.eventflux-why-image {
    animation: eventflux-slide-in-right 0.8s ease-out;
}

@keyframes eventflux-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.eventflux-why-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--eventflux-shadow);
    aspect-ratio: 600 / 400;
    object-fit: cover;
}

/* Testimonials Section */
.eventflux-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.eventflux-testimonials-section .eventflux-section-title {
    color: #ffffff;
}

.eventflux-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.eventflux-testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--eventflux-shadow);
    transition: var(--eventflux-transition);
    position: relative;
    display: flex;
    gap: 1.5rem;
}

.eventflux-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.eventflux-testimonial-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--eventflux-primary);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.3;
}

.eventflux-testimonial-content {
    flex: 1;
}

.eventflux-testimonial-author {
    font-weight: 600;
    color: var(--eventflux-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.eventflux-testimonial-text {
    color: var(--eventflux-text-light);
    line-height: 1.7;
    font-style: italic;
}

/* FAQ Section */
.eventflux-faq-section {
    padding: 100px 0;
    background: #f8f9faba;
}

.eventflux-faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.eventflux-faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--eventflux-transition);
}

.eventflux-faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eventflux-faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--eventflux-dark);
    transition: var(--eventflux-transition);
}

.eventflux-faq-question:hover {
    color: var(--eventflux-primary);
}

.eventflux-faq-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eventflux-primary);
    flex-shrink: 0;
    width: 40px;
}

.eventflux-faq-text {
    flex: 1;
}

.eventflux-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--eventflux-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.eventflux-faq-question[aria-expanded="true"] .eventflux-faq-icon {
    transform: rotate(45deg);
}

.eventflux-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.eventflux-faq-question[aria-expanded="true"] + .eventflux-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.eventflux-faq-answer p {
    color: var(--eventflux-text-light);
    line-height: 1.7;
    padding-top: 1rem;
}

/* Footer */
.eventflux-footer-wrapper {
    background: var(--eventflux-dark);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
}

.eventflux-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.eventflux-footer-section {
    animation: eventflux-fade-in 0.8s ease-out;
}

@keyframes eventflux-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.eventflux-footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.eventflux-footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.eventflux-footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.eventflux-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.eventflux-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--eventflux-transition);
    font-size: 0.95rem;
}

.eventflux-footer-link:hover {
    color: var(--eventflux-primary);
    padding-left: 5px;
}

.eventflux-help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.eventflux-help-link {
    display: inline-block;
    transition: var(--eventflux-transition);
    opacity: 0.8;
}

.eventflux-help-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.eventflux-help-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    aspect-ratio: 120 / 40;
}

.eventflux-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.eventflux-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.eventflux-footer-warning {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .eventflux-nav-menu {
        display: none;
    }
    
    .eventflux-burger-btn {
        display: flex;
    }
    
    .eventflux-why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .eventflux-brands-grid {
        grid-template-columns: 1fr;
    }
    
    .eventflux-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .eventflux-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .eventflux-cta-primary,
    .eventflux-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .eventflux-container {
        padding: 0 15px;
    }
    
    .eventflux-hero-section {
        padding: 100px 15px 60px;
    }
    
    .eventflux-brands-section,
    .eventflux-why-section,
    .eventflux-testimonials-section,
    .eventflux-faq-section {
        padding: 60px 0;
    }
    
    .eventflux-mobile-menu {
        width: 100%;
    }
    
    .eventflux-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .eventflux-help-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .eventflux-logo-img {
        height: 35px;
    }
    
    .eventflux-hero-title {
        font-size: 1.7rem;
    }
    
    .eventflux-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .eventflux-brand-card,
    .eventflux-testimonial-card {
        padding: 1.5rem;
    }
    
    .eventflux-testimonial-card {
        flex-direction: column;
    }
    
    .eventflux-testimonial-number {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .eventflux-header-wrapper,
    .eventflux-footer-wrapper,
    .eventflux-canvas-bg {
        display: none;
    }
    
    body {
        background: #ffffff;
        color: #000000;
    }
}

