/* === BUG 1 FIX: Prevent horizontal scrolling === */
html,
body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* --- NEW PREMIUM HEADER DESIGN --- */
.new_design_header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

/* === BUG 2 FIX: White background marketplace banner === */
.top_header_banner {
    background: #ffffff;
    color: #555;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    width: 100%;
    border-bottom: 1px solid #eee;
}

/* NEW BULLETPROOF NAV CONTAINER */
.new-header-nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 40px !important;
    height: 80px !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo-navigation-wrap {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    gap: 40px !important;
    /* Space between logo and menu */
}

/* Logo specific fix */
.logo {
    display: flex;
    flex-shrink: 0;
    /* prevent logo squishing */
}

.logo img {
    height: auto;
    max-height: 60px;
}

.mega-menu-new {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

.mega-menu-new>li {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.mega-menu-new>li>a {
    color: #222 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    position: relative !important;
    transition: color 0.3s !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    text-transform: uppercase;
}

.mega-menu-new>li>a:hover {
    color: #E60000 !important;
}

.mega-menu-new>li>a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0% !important;
    height: 3px !important;
    background: #E60000 !important;
    transition: width 0.3s !important;
}

.mega-menu-new>li:hover>a::after {
    width: 100% !important;
}

/* Fix mega dropdown visibility trigger */
.menu-item-has-children:hover>.mega-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.mega-dropdown {
    position: absolute !important;
    top: 80px !important;
    /* Matches header height */
    left: 0 !important;
    width: 100vw !important;
    /* Full browser width */
    background: #ffffff !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border-top: 1px solid #eee !important;
    padding: 40px 10vw !important;
    z-index: 9999 !important;
    box-sizing: border-box;
}

.mega-list {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.mega-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.mega-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 20px !important;
    background: #f9f9f9 !important;
    border-radius: 8px !important;
    color: #444 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    border: 1px solid transparent !important;
    font-size: 14px;
}

.mega-link:hover {
    background: #fffafa !important;
    border-color: #E60000 !important;
    color: #E60000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.08) !important;
}

/* === BUG 2 FIX: Clean Sell button === */
.sell_button_menu {
    background: #E60000 !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: background 0.2s ease, box-shadow 0.2s ease !important;
    text-decoration: none !important;
    height: auto !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
    border: none !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* Override specific rule that was making the button 100% height */
.mega-menu-new>li>a.sell_button_menu {
    height: auto !important;
    padding: 10px 24px !important;
    align-self: center !important;
    margin: auto 0 !important;
}

.sell_button_menu:hover {
    background: #CC0000 !important;
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.25) !important;
    color: white !important;
    transform: none !important;
}

/* Hide the badge on sell button */
.sell_button_menu .badge-new {
    display: none !important;
}

.badge-new {
    background: white !important;
    color: #E60000 !important;
    font-size: 10px !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
}

/* Right side actions */
.right-actions {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-shrink: 0;
}

.account-links-new {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

.action-link {
    color: #444 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #f5f5f5 !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
}

.action-link svg,
.search-icon-btn svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.action-link svg path,
.action-link svg circle {
    fill: #444 !important;
}

.search-icon-btn svg circle,
.search-icon-btn svg line {
    stroke: #444 !important;
}

.action-link:hover {
    background: #E60000 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.action-link:hover svg path,
.action-link:hover svg circle {
    fill: white !important;
}

/* Expandable Search Bar */
.search-expandable {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.search-form-new {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.search-input-new {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    outline: none !important;
    background: transparent !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    color: transparent !important;
    cursor: pointer !important;
    z-index: 2;
}

.search-input-new::placeholder {
    color: transparent !important;
}

.search-input-new:focus,
.search-input-new:not(:placeholder-shown) {
    width: 280px !important;
    background: #f5f5f5 !important;
    padding: 10px 45px 10px 20px !important;
    color: #333 !important;
    cursor: text !important;
    border: 1px solid #eaeaea !important;
}

.search-input-new:focus::placeholder {
    color: #999 !important;
}

.search-form-new:focus-within .search-icon-btn,
.search-expandable:focus-within .search-icon-btn {
    pointer-events: auto !important;
    color: #E60000 !important;
    background: transparent !important;
    z-index: 3;
}

.search-icon-btn {
    position: absolute !important;
    right: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #f5f5f5 !important;
    border: none !important;
    color: #444 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 1;
}

.search-form-new:hover .search-icon-btn {
    background: #eee !important;
}

.search-form-new:focus-within .search-icon-btn {
    background: transparent !important;
}

/* Hide legacy elements entirely */
.mobileNav,
.hamburgerMenu,
.marketplace,
.top_header,
.notHidden.social {
    display: none !important;
}

/* --- NEW PREMIUM WHITE FOOTER --- */
footer#main_footer.new_design_footer {
    background: #ffffff !important;
    background-image: none !important;
    border-top: 1px solid #eaeaea;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
    color: #444;
}

.new_design_footer {
    background: #ffffff !important;
}

.new-white-footer-container {
    width: 100%;
}

.new-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer_menu_new {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #E60000;
}

.footer_menu_new ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_menu_new ul li {
    margin-bottom: 12px;
}

.footer_menu_new ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer_menu_new ul li a:hover {
    color: #E60000;
}

/* Contact & Newsletter Section */
.brand-section {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.newsletter-form {
    margin-bottom: 25px;
}

.newsletter-input-group {
    display: flex;
    align-items: stretch;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.newsletter-input-group input {
    border: none;
    padding: 12px 15px;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 13px;
    color: #333;
}

.newsletter-input-group button {
    background: #E60000;
    color: white;
    border: none;
    padding: 0 15px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-input-group button:hover {
    background: #CC0000;
}

.social-links-new {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links-new li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.social-links-new li a img {
    height: 16px;
    width: auto;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}

.social-links-new li a:hover {
    background: #E60000;
    transform: translateY(-2px);
}

.social-links-new li a:hover img {
    filter: grayscale(0%) opacity(100%) brightness(200%);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #fafafa;
    border-top: 1px solid #eaeaea;
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #777;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-badges span {
    display: flex;
    align-items: center;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .new-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .new-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- NEW PREMIUM MOBILE HEADER & NAV DRAWER --- */

/* Hamburger Button */
.hamburgerMenu-new {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    /* Above header */
}

.hamburgerMenu-new span {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav Drawer (Hidden by default) */
.mobileNav-new {
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden off-screen */
    width: 320px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
}

.mobileNav-new.open {
    right: 0;
    /* Slide in */
}

/* Overlay */
.mobile-overlay-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay-new.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Header */
.mobileNav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

/* Drawer Content */
.mobileNav-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mobile-main-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-dropdown {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

/* Mobile Dropdown Submenu */
.mobile-dropdown-menu {
    list-style: none;
    padding: 0 0 10px 15px;
    margin: 0;
    display: none;
    /* Hidden by default, toggled via JS */
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 10px 5px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.mobile-dropdown-menu li a:hover {
    color: #E60000;
}

/* Mobile Actions (Login/Account) */
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.mob-action-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.mob-action-link svg {
    color: #888;
}

.mob-action-link.text-red {
    color: #E60000;
}

.mob-action-link.text-red svg {
    color: #E60000;
}

/* Mobile Sell Button */
.mobile-sell-wrapper {
    margin-top: auto;
    /* Push to bottom */
    padding-top: 20px;
}

.mob-sell-btn {
    width: 100%;
    justify-content: center;
    padding: 14px !important;
    font-size: 16px !important;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .new-header-nav-container {
        padding: 0 20px !important;
        height: 70px !important;
    }

    /* Hide desktop menu & actions */
    .mega-menu-new,
    .account-links-new {
        display: none !important;
    }

    /* Show hamburger */
    .hamburgerMenu-new {
        display: flex !important;
        margin-left: 20px;
    }

    /* Adjust logo size for mobile */
    .logo img {
        max-height: 45px;
    }

    /* Adjust search bar for mobile */
    .search-input-new:focus,
    .search-input-new:not(:placeholder-shown) {
        width: calc(100vw - 170px) !important;
        max-width: 200px !important;
    }
}

/* =========================================
   HERO SLIDER REDESIGN (Phase 2)
   ========================================= */

.hero-slider-new {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-slides-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlider 18s infinite;
    transform: scale(1.05);
    /* Ken Burns effect */
    transition: transform 18s linear;
}

.hero-slide-new:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide-new:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide-new:nth-child(3) {
    animation-delay: 12s;
}

@keyframes fadeSlider {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    10% {
        opacity: 1;
        transform: scale(1.08);
    }

    33% {
        opacity: 1;
        transform: scale(1.10);
    }

    43% {
        opacity: 0;
        transform: scale(1.12);
    }

    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 27, 77, 0.4) 100%);
    z-index: 2;
}

.hero-content-new {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title-new {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: slideUpFade 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle-new {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 1s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphic Search Bar */
.hero-search-wrapper-new {
    animation: slideUpFade 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    max-width: 700px;
    margin: 0 auto;
}

.hero-search-glass-new {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 5px 5px 5px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-search-glass-new:hover,
.hero-search-glass-new:focus-within {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* FlexDatalist overrides */
.hero-search-glass-new .flexdatalist-multiple {
    flex-grow: 1;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.hero-search-glass-new input.hero-search-input-new,
.hero-search-glass-new input.flexdatalist-alias {
    flex-grow: 1;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    outline: none !important;
    min-width: 0;
    padding-right: 15px;
}

.hero-search-glass-new input::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1;
}

.hero-search-form-new {
    margin: 0;
    display: flex;
    flex-shrink: 0;
}

.hero-search-btn-new {
    background: linear-gradient(135deg, #E60000 0%, #cc0000 100%);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.hero-search-btn-new:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.5);
}

/* FlexDatalist dropdown popup styling */
.flexdatalist-results {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    margin-top: 15px !important;
    font-family: 'Inter', sans-serif;
}

.flexdatalist-results li.item {
    padding: 12px 20px !important;
    color: #333 !important;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.flexdatalist-results li.item:hover,
.flexdatalist-results li.item.active {
    background-color: #f5f5f5 !important;
    color: #E60000 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider-new {
        height: 400px;
    }

    .hero-title-new {
        font-size: 2.2rem;
    }

    .hero-subtitle-new {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-search-glass-new {
        padding: 5px 5px 5px 15px;
    }

    .hero-search-btn-new {
        padding: 12px 20px;
    }

    .hero-search-btn-new span {
        display: none;
    }

    .hero-search-glass-new input.hero-search-input-new,
    .hero-search-glass-new input.flexdatalist-alias {
        font-size: 1rem;
    }
}

/* =========================================
   HOMEPAGE CONTENT REDESIGN (Phase 2.2)
   ========================================= */

/* Mesh Gradient Background for Main Content */
.main-glass-bg-new {
    position: relative;
    background-color: #f8fbff;
    padding: 60px 0;
    overflow: hidden;
}

.main-glass-bg-new::before,
.main-glass-bg-new::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.main-glass-bg-new::before {
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.15) 0%, transparent 70%);
}

.main-glass-bg-new::after {
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
}

.main-glass-bg-new>.container {
    position: relative;
    z-index: 1;
}

/* Club Icons Redesign */
.clubs_icons_field_new {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.ci_box_new {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.ci_box_new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 0, 0, 0.15);
}

.ci_box_new img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* Browse by League / Popular Teams */
.browse-pills-section {
    padding: 0 15px;
}

.browse-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.browse-pill {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.browse-pill img {
    height: 24px;
    width: 24px;
    object-fit: contain;
    margin-right: 12px;
}

.browse-pill:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    color: #141b4d;
}

/* Event Grid Layout */
.events-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Glass Card styling */
.glass-card-new {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-decoration: none;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.glass-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(20, 27, 77, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

/* Card Header (Date) */
.glass-card-header-new {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: rgba(20, 27, 77, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.glass-date-box-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #141b4d 0%, #2a347d 100%);
    color: #fff;
    border-radius: 12px;
    width: 55px;
    height: 55px;
    box-shadow: 0 4px 12px rgba(20, 27, 77, 0.3);
}

.glass-date-box-new .dateNum {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.glass-date-box-new .dateString {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
}

.glass-event-category-new {
    margin-left: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Body (Teams) */
.glass-card-body-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 25px;
    flex-grow: 1;
}

.glass-team-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: center;
}

.glass-team-emblem-new {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.glass-team-name-new {
    font-size: 1.05rem;
    font-weight: 700;
    color: #141b4d;
    line-height: 1.3;
}

.glass-vs-new {
    font-size: 1.2rem;
    font-weight: 800;
    color: #aaa;
    font-style: italic;
}

/* Card Footer (Price & CTA) */
.glass-card-footer-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-price-info-new {
    display: flex;
    flex-direction: column;
}

.glass-price-label-new {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 2px;
}

.glass-price-value-new {
    font-size: 1.4rem;
    font-weight: 800;
    color: #E60000;
    margin: 0;
}

.glass-soldout-new {
    font-size: 1.2rem;
    font-weight: 800;
    color: #666;
    margin: 0;
}

.glass-btn-new {
    background: linear-gradient(135deg, #E60000 0%, #cc0000 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-btn-grey-new {
    background: linear-gradient(135deg, #888 0%, #666 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.glass-card-new:hover .glass-btn-new {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}

.glass-card-new:hover .glass-btn-grey-new {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Section Titles Update */
.content_section-title-new {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #141b4d;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.content_section-title-new img {
    height: 35px;
}

/* Responsive Overrides for Cards */
@media (max-width: 768px) {
    .events-grid-new {
        grid-template-columns: 1fr;
    }

    .clubs_icons_field_new {
        gap: 15px;
    }

    .ci_box_new {
        width: 75px;
        height: 75px;
        border-radius: 15px;
    }

    .content_section-title-new {
        font-size: 1.6rem;
    }
}

/* =========================================
   LOWER HOMEPAGE REDESIGN (Phase 2.3)
   ========================================= */

/* Trustpilot Section */
.trustpilot-section-new {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.trustpilot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.trustpilot-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #333;
}

.trustpilot-text a {
    color: #333;
    text-decoration: underline;
}

.trustpilot-text strong {
    font-weight: 800;
}

/* Blog Section */
.blog-section-new {
    margin-bottom: 60px;
}

.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card-new {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.blog-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img-holder {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-new:hover .blog-img-holder img {
    transform: scale(1.05);
}

.blog-info-holder {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #141b4d;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.blog-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.blog-read-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #E60000;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* SEO Text Redesign */
.seo-section-new {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.seo-text-modern {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    /* Tailwind slate-600 */
}

.seo-text-modern h2,
.seo-text-modern h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    /* Tailwind slate-800 */
    margin-top: 35px !important;
    margin-bottom: 15px !important;
    font-size: 1.5rem !important;
}

.seo-text-modern p {
    margin-bottom: 20px !important;
}

.seo-text-modern a {
    color: #2563eb !important;
    /* Blue */
    text-decoration: underline !important;
    font-weight: 500 !important;
}

.seo-text-modern ul {
    margin-bottom: 25px !important;
    padding-left: 20px !important;
}

.seo-text-modern li {
    margin-bottom: 10px !important;
}

/* Mobile Adjustments for New Sections */
@media (max-width: 768px) {
    .browse-pills-container {
        flex-direction: column;
    }

    .browse-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .blog-grid-new {
        grid-template-columns: 1fr;
    }

    .seo-section-new {
        padding: 25px 20px;
    }
}

/* -------------------------------------
 * Phase 3: Event Page Hero Header
 * ------------------------------------- */

.event-hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 40px 20px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Optional: If we had a stadium background image, this would be a dark, semi-transparent overlay */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.event-hero-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #cbd5e1;
    /* slate-300 */
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-hero-teams-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.event-hero-team {
    text-align: center;
    flex: 1;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.event-hero-team:hover {
    transform: translateY(-5px);
}

.event-hero-team a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.team-logo-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.event-hero-team:hover .team-logo-wrap {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05);
    /* Added subtle glow */
}

.team-logo-wrap img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.hero-team-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.event-hero-vs-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.event-date-badge {
    background: #E60000;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3);
}

.badge-month {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.badge-day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.vs-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    /* Fallback */
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.event-time {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    /* slate-400 */
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-hero-venue {
    text-align: center;
    margin-top: 10px;
}

.venue-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.venue-inner svg {
    color: #3b82f6;
    /* blue-500 */
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.venue-name a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.venue-name a:hover {
    color: #93c5fd;
    /* blue-300 */
}

.venue-location {
    color: #94a3b8;
    /* slate-400 */
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .event-hero-teams-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .event-hero-team {
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.03);
        padding: 15px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        gap: 20px;
    }

    .event-hero-team a {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .team-logo-wrap {
        width: 70px;
        height: 70px;
        margin: 0;
    }

    .team-logo-wrap img {
        max-width: 50px;
        max-height: 50px;
    }

    .hero-team-name {
        font-size: 1.25rem;
    }

    .event-hero-vs-block {
        order: -1;
        /* Move date/VS above teams on mobile */
        margin-bottom: 15px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .vs-text {
        display: none;
        /* Hide VS on mobile for space */
    }

    .event-hero-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .venue-inner {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* -------------------------------------
 * Phase 3: Event Page - Map & Tickets 
 * ------------------------------------- */

/* Map Container */
.modern-stadium-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
    /* slate-100 */
}

.event-map-modern-container {
    background: #f8fafc;
    /* slate-50 */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Ticket Availability Header */
.modern-tickets-section {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.tickets-modern-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    /* slate-200 */
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticketsAvailableh2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    /* slate-800 */
    margin: 0;
}

/* Modern Ticket Rows */
.modern-ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    /* slate-200 */
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.modern-ticket-row:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #cbd5e1;
    /* slate-300 */
}

.ticket-info-block {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.ticket-detail-item {
    font-size: 0.95rem;
}

.ticket-detail-item .detail-label {
    color: #64748b;
    /* slate-500 */
    font-weight: 500;
}

.ticket-detail-item .detail-value {
    color: #0f172a;
    /* slate-900 */
    font-weight: 700;
}

.ticket-note-icon {
    color: #3b82f6;
    /* blue-500 */
    cursor: help;
    transition: color 0.2s;
}

.ticket-note-icon:hover {
    color: #2563eb;
    /* blue-600 */
}

.ticket-qty-block {
    flex: 1;
    text-align: center;
}

.ticket-qty-pill {
    background: #f1f5f9;
    /* slate-100 */
    color: #475569;
    /* slate-600 */
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
}

.ticket-price-block {
    flex: 1;
    text-align: right;
}

.ticket-price-bold {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E60000;
    /* Primary brand color */
}

.ticket-action-block {
    flex: 1;
    text-align: right;
    padding-left: 20px;
}

.btn-ticket-modern {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    /* Emerald gradient */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    /* Pill shape */
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-ticket-modern:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Mobile Adjustments for Tickets */
@media (max-width: 768px) {
    .modern-ticket-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .ticket-info-block,
    .ticket-qty-block,
    .ticket-price-block,
    .ticket-action-block {
        flex: 1;
        width: 100%;
        text-align: left;
        padding-left: 0;
    }

    .ticket-qty-block {
        text-align: left;
    }

    .ticket-price-block {
        text-align: left;
    }

    .btn-ticket-modern {
        display: block;
        width: 100%;
    }
}

/* ==========================================================================
   Checkout Page Liquid Glass Redesign (Phase 4)
   ========================================================================== */
.modern-checkout-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.modern-checkout-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}

.modern-checkout-header {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-checkout-header .note {
    font-size: 0.85rem;
    font-weight: 400;
    color: #64748b;
}

.modern-input,
.modern-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.2s ease;
}

.modern-input:focus,
.modern-dropdown:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: #ffffff;
}

.btn-checkout-modern {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-checkout-modern:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #34d399, #10b981);
}

.btn-checkout-modern:active {
    transform: translateY(1px) scale(0.98);
}

/* ==========================================================================
   Category, Stadium, and Team Pages Redesign (Phase 5)
   ========================================================================== */
.modern-page-header {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 20px 40px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.modern-page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.modern-event-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.05);
    transition: all 0.3s ease;
}

.modern-event-card:hover {
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.6);
}

.modern-event-date {
    background: #0f172a;
    color: white;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    min-width: 70px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-event-date .dateNum {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.modern-event-date .dateString {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 4px 0 0 0;
    opacity: 0.8;
}

.modern-event-matchup {
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.modern-event-matchup .team-block {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.modern-event-matchup .team-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 0 12px;
}

.modern-event-matchup .vs-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 8px;
    border-radius: 20px;
    margin: 0 10px;
}

.modern-event-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 150px;
}

.modern-event-action .price-label {
    font-size: 0.85rem;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.modern-event-action .price-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #d50032;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

/* Mobile Responsiveness for Event Cards */
@media (max-width: 768px) {
    .modern-event-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .modern-event-date {
        flex-direction: row;
        align-items: baseline;
        width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
        padding: 10px 16px;
        justify-content: flex-start;
    }

    .modern-event-date .dateString {
        margin: 0 0 0 8px;
        font-size: 1.1rem;
    }

    .modern-event-matchup {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .modern-event-matchup .team-block {
        width: 100%;
        margin-bottom: 10px;
    }

    .modern-event-matchup .team-logo {
        margin: 0 12px 0 0;
    }

    .modern-event-matchup .vs-badge {
        display: none;
        /* Hide VS badge on mobile for cleaner stacked view */
    }

    .modern-event-action {
        width: 100%;
        align-items: flex-start;
    }

    .modern-event-action .btn-ticket-modern {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
}

/* =========================================
   BUG 3 FIX: Better Contact Icon (envelope)
   ========================================= */
.action-link[title="Contact Us"] svg {
    display: none !important;
}

.action-link[title="Contact Us"]::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.mob-action-link[href="/contact-us"] svg {
    display: none !important;
}

.mob-action-link[href="/contact-us"]::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23444' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* =========================================
   BUG 5 FIX: Scrollable sections with arrows
   ========================================= */
.scrollable-section-wrap {
    position: relative;
}

.scrollable-section-wrap .browse-pills-container,
.scrollable-section-wrap .section_body--notPadded {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 15px;
    padding-bottom: 10px;
}

.scrollable-section-wrap .browse-pills-container::-webkit-scrollbar,
.scrollable-section-wrap .section_body--notPadded::-webkit-scrollbar {
    display: none;
}

.scrollable-section-wrap .browse-pill {
    flex-shrink: 0 !important;
    white-space: nowrap;
}

.scrollable-section-wrap .modern-event-card {
    flex-shrink: 0 !important;
    min-width: 420px;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

.scroll-arrow:hover {
    background: #E60000;
    color: #fff;
    border-color: #E60000;
    box-shadow: 0 6px 18px rgba(230, 0, 0, 0.2);
}

.scroll-arrow-left {
    left: -18px;
}

.scroll-arrow-right {
    right: -18px;
}

@media (max-width: 768px) {
    .scroll-arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .scroll-arrow-left {
        left: -5px;
    }

    .scroll-arrow-right {
        right: -5px;
    }

    .scrollable-section-wrap .modern-event-card {
        min-width: 300px;
    }
}

/* =========================================
   BUG 6 FIX: Modern link styles + Blog button
   ========================================= */
/* Global modern link styling */
a {
    color: #1e40af;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #E60000;
}

/* Keep header/footer links from being affected */
.new_design_header a,
.new_design_footer a,
.mega-menu-new a,
.mega-dropdown a,
.mega-link,
.footer_menu_new a,
.sell_button_menu,
.action-link,
.browse-pill,
.blog-card-new,
.btn-ticket-modern,
.glass-btn-new,
.btn-checkout-modern,
.mob-action-link {
    color: inherit;
}

/* Blog Visit button */
.blog-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E60000 0%, #cc0000 100%);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.25);
    transition: all 0.3s ease;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.35);
    color: #fff !important;
    background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%);
}

.blog-section-center {
    text-align: center;
    margin-top: 10px;
}

/* =========================================
   BUG 7 FIX: Modern Subscribe Sidebar
   ========================================= */
.sidebar .content_section:first-child {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 24px !important;
}

.sidebar .content_section:first-child .dark_blue {
    background: transparent !important;
    padding: 20px 20px 0 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.sidebar .content_section:first-child .dark_blue img {
    display: none !important;
}

.sidebar-subscribe-wrap {
    width: 100% !important;
    text-align: center !important;
}

.sidebar-subscribe-wrap .btn.btn-green {
    background: #10b981 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.sidebar-subscribe-wrap .btn.btn-green:hover {
    background: #059669 !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4) !important;
    transform: translateY(-2px) !important;
}

.sidebar .content_section:first-child>div[style] {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 15px 20px 25px 20px !important;
    text-align: center !important;
    line-height: 1.5 !important;
    opacity: 0.9;
}

/* =========================================
   BUG 8 FIX: Redesigned Guarantee Section
   ========================================= */
.sidebar .content_section:nth-child(2) {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.sidebar .content_section:nth-child(2) .section_body {
    padding: 25px !important;
}

.sidebar .content_section:nth-child(2)::before {
    content: '🛡️ Guaranteed Football Tickets';
    display: block;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

ul.guarantees {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.guarantees li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    color: #334155 !important;
    line-height: 1.5 !important;
}

ul.guarantees li:last-child {
    border-bottom: none !important;
}

ul.guarantees li::before {
    content: '✅';
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

ul.guarantees li p {
    margin: 0 !important;
    font-size: inherit !important;
    color: inherit !important;
    line-height: inherit !important;
}

ul.guarantees li p a {
    color: #E60000 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

ul.guarantees li p a:hover {
    text-decoration: underline !important;
}

/* Hide the old flaticon checkmarks */
.flaticon-tick-inside-circle::before {
    display: none !important;
}