/*
Theme Name: OX-ULTRA
Theme URI: https://sightox.com
Author: nerodOX
Author URL: https://nerodox.com
Description: A WordPress theme recreating the sightOX.com design, compatible with WooCommerce.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sightox
*/

:root {
    --primary-color: #38BDF8;
    --dark-bg: #0f172a;
    --sidebar-bg: #111826;
    --card-bg: #111826;
    --light-text: #f8fafc;
    --gray-text: #94a3b8;
    --border-color: #334155;
    --sidebar-width: 280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: auto;
}

@media (min-width: 1025px) {
    html, body {
        overflow: hidden;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.site-dashboard {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
    max-width: 100vw;
}

.site-dashboard::before {
    content: '';
    position: fixed;
    top: 64px;
    left: var(--sidebar-width);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at bottom right, transparent 40px, var(--sidebar-bg) 41px);
    z-index: 2000;
    pointer-events: none;
    display: block;
}

.site-dashboard::after {
    content: '';
    position: fixed;
    top: 64px;
    left: var(--sidebar-width);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at top right, transparent 40px, var(--sidebar-bg) 41px);
    z-index: 1102;
    pointer-events: none;
    display: none;
}

@media (max-width: 1024px) {
    .site-dashboard {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        flex-direction: column;
        max-width: 100%;
    }
}

.dashboard-header {
    height: 64px;
    min-height: 64px;
    background: var(--header-bg);
    color: var(--header-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1050;
    position: fixed;
    top: 0;
    left: var(--sidebar-width);
    right: 0;
    box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.5);
}

.header-brand.mobile-logo {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    position: relative;
}

.header-brand.mobile-logo .logo-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-brand.mobile-logo .typewriter-container {
    font-size: 12px;
    padding-left: 0;
    position: relative;
    z-index: 2;
}

.header-brand.mobile-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.header-brand.mobile-logo .logo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.header-brand.mobile-logo .logo-icon svg {
    width: 50px;
    height: 50px;
}

.header-brand.mobile-logo .logo-text {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: none;
    position: relative;
    z-index: 2;
    padding-left: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: none;
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 64px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at bottom right, transparent 40px, var(--sidebar-bg) 41px);
    z-index: 1102;
    pointer-events: none;
}

.content-area {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
    min-width: 0;
    padding-top: 64px;
    scrollbar-width: thin;
}

.sidebar-logo {
    padding: 20px 30px 10px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.logo-main-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 2;
    padding-left: 0;
}

.typewriter-container {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    min-height: 1.2em;
    text-transform: uppercase;
    padding-left: 0;
    position: relative;
    z-index: 2;
}

.fixed-info-card .typewriter-container {
    font-size: 15px;
    padding-left: 0;
    text-align: center;
    width: 100%;
}

.sidebar-logo.desktop-logo {
    display: flex;
}

.sidebar-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.sidebar-logo .logo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sidebar-logo .logo-icon svg {
    width: 50px;
    height: 50px;
}

.sidebar-logo .logo-text {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: none;
    position: relative;
    z-index: 2;
}

.menu-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    padding: 30px 30px 15px;
    margin: 0;
    opacity: 0.8;
}

.sidebar-navigation {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
    clip-path: inset(0 -30px 0 0);
    min-height: 0;
}

.sidebar-navigation::-webkit-scrollbar {
    width: 4px;
}

.sidebar-navigation::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-navigation::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.1);
    border-radius: 2px;
}

.sidebar-navigation::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.sidebar-navigation ul {
    list-style: none;
    padding: 0 18px;
    margin: 0;
}

.sidebar-navigation li {
    margin-bottom: 10px;
    position: relative;
}

.sidebar-navigation a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--sidebar-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.menu-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.08);
    color: var(--primary-color);
    transition: all 0.25s ease;
}

.sidebar-navigation a:hover {
    background: rgba(56, 189, 248, 0.06);
    border-color: rgba(56, 189, 248, 0.15);
    color: #fff;
    transform: translateX(3px);
}

.sidebar-navigation li.active a {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(56, 189, 248, 0.05));
    border-color: rgba(56, 189, 248, 0.4);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.sidebar-navigation li.active a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 10px;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.sidebar-navigation li.active .menu-icon {
    background: rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.menu-icon {
    margin-right: 14px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
    min-width: 20px;
}

.sidebar-navigation li.active .menu-icon,
.sidebar-navigation a:hover .menu-icon {
    opacity: 1;
}

.sidebar-navigation li.active .menu-icon {
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5));
}

.search-container .search-form {
    display: flex;
    align-items: center;
    background: #0f172a;
    border-radius: 10px;
    padding: 2px 16px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
	
}

.search-container .search-form.is-scanning {
    overflow: hidden;
}

.scanner-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    display: none;
    z-index: 5;
    pointer-events: none;
}

.search-form.is-scanning .scanner-scan-line {
    display: block;
    animation: scanMove 1.5s linear infinite;
}

@keyframes scanMove {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.scanner-loader {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    display: none;
    margin-left: 10px;
    flex-shrink: 0;
}

.search-form.is-scanning .scanner-loader {
    display: block;
    animation: scanRotate 0.8s linear infinite;
}

@keyframes scanRotate {
    to { transform: rotate(360deg); }
}

.search-form.is-scanning .desktop-scanner-icon {
    animation: scanPulse 1s ease-in-out infinite;
}

@keyframes scanPulse {
    0%, 100% { color: var(--gray-text); }
    50% { color: var(--primary-color); }
}

.search-container .search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.1), inset 0 2px 4px rgba(0,0,0,0.3);
}

.search-field {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px;
    width: 240px;
    outline: none;
    font-size: 14px;
}

.search-field::placeholder {
    color: #4b5563;
}

.search-submit {
    background: transparent;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.search-submit:hover {
    color: var(--primary-color);
}

.mobile-scanner-icon {
    display: none;
}

/* Verification Modal */
.verification-modal {
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-modal-content {
    background: var(--sidebar-bg);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(56, 189, 248, 0.2);
    position: relative;
    color: #fff;
}

.close-verification-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--gray-text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.verification-result-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.verification-result-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.verification-result-value {
    font-size: 15px;
    font-weight: 600;
}

.btn-action, .btn-profile {
    color: var(--light-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-action:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
}

.main-dashboard-grid {
    flex: 1;
    display: flex;
    margin: 0;
    padding: 30px;
    background: var(--dark-bg);
    overflow: hidden;
    min-height: calc(100vh - 64px);
    gap: 0;
    align-items: stretch;
}

.fixed-info-card-wrapper {
    width: 38%;
    min-width: 380px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.fixed-info-card {
    width: 100%;
    background: var(--sidebar-bg);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(56, 189, 248, 0.08);
    overflow: hidden;
}

.website-hero-container {
    position: relative;
    flex-shrink: 0;
}

.website-hero-image {
    height: auto;
    aspect-ratio: 4/3;
    max-height: 40vh;
    background-color: var(--dark-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    border-radius: 20px 20px 0 0;
    width: 100%;
    overflow: hidden;
}

.website-logo-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 110px;
    height: 110px;
    background: var(--sidebar-bg);
    border: 4px solid var(--sidebar-bg);
    border-radius: 50%;
    z-index: 20;
    background-image: url('https://sightox.com/wp-content/uploads/2025/09/ST-iphone.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.pulse-animation {
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        transform: translate(-50%, 50%) scale(1);
    }
    50% {
        box-shadow: 0 10px 50px rgba(56, 189, 248, 0.4), 0 0 80px rgba(56, 189, 248, 0.15);
        transform: translate(-50%, 50%) scale(1.05);
    }
}

.star-pulse {
    animation: starPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.8));
    }
}

.website-card-footer {
    padding: 60px 20px 8px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.website-card-footer h3 {
    font-size: 24px;
    text-transform: none;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 800;
    margin: 0;
}

.website-tagline {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.website-trusted {
    padding: 10px 20px;
    flex-shrink: 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trusted-label {
    font-size: 10px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.trusted-avatars {
    display: flex;
    justify-content: center;
}

.trust-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--sidebar-bg);
    margin-left: -10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar:hover {
    transform: translateY(-4px);
    z-index: 2;
}

.website-social-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 15px 15px;
    flex-shrink: 0;
    justify-content: center;
}

.social-bar-item {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-bar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.social-bar-item:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.social-bar-item:hover::before {
    opacity: 1;
}

.social-icon-wrap {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.social-bar-item:hover .social-icon-wrap {
    border-color: transparent;
    transform: scale(1.1);
}

.social-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-bar-item:hover .social-icon-bg {
    opacity: 1;
}

.social-icon-bg.whatsapp-bg {
    background: linear-gradient(135deg, #075e54, #25D366);
}

.social-icon-bg.facebook-bg {
    background: linear-gradient(135deg, #0d47a1, #1877F2);
}

.social-icon-bg.call-bg {
    background: linear-gradient(135deg, #0284c7, #38BDF8);
}

.social-icon-wrap svg {
    position: relative;
    z-index: 2;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.social-bar-item:hover .social-icon-wrap svg {
    color: #fff;
}

.social-label {
    font-size: clamp(8px, 1vw, 11px);
    font-weight: 700;
    color: var(--gray-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1200px) {
    .website-social-bar:has(> :nth-child(4)) .social-label {
        display: none;
    }
    .website-social-bar:has(> :nth-child(4)) .social-bar-item {
        min-width: 40px;
        flex: 0 0 auto;
    }
}

.social-bar-item:hover .social-label {
    color: #fff;
}

.dynamic-content-wrapper {
    flex: 1;
    position: relative;
    padding: 35px 0px;
    background: #111827;
    overflow: hidden;
    height: 100%;
    border-radius: 20px;
    margin-left: 30px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .dynamic-content-wrapper {
        padding: 0;
        margin-left: 0;
        background: transparent;
        border-radius: 0;
    }
}

.content-section {
    opacity: 0;
    transform: translateX(30px);
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.content-section.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    position: relative;
    pointer-events: auto;
    height: 100%;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

.content-section.active::-webkit-scrollbar {
    width: 6px;
}

.content-section.active::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.4);
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .content-section {
        display: none;
        position: relative;
        height: auto;
        transform: translateX(30px);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    }
    .content-section.active {
        display: block;
        max-height: none;
        overflow: visible;
        padding: 20px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }
}

.content-section.exit {
    opacity: 0;
    transform: translateX(-30px);
    visibility: hidden;
}

.about-metrics-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.about-metrics-row:not(.is-slider) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
}

.about-metrics-row.is-slider {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.about-metrics-row.is-slider .about-metric-item {
    flex: 0 0 calc((100% - 48px) / 4);
    scroll-snap-align: start;
    min-width: 150px;
}

.about-metric-item {
    background: var(--card-bg);
    border: 1px solid rgba(56, 189, 248, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-metric-item:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.metric-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary-color);
}

.metric-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.metric-sub {
    font-size: 12px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.section-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
    opacity: 0.8;
}

.section-header h2 {
    font-size: 26px;
    margin: 0 0 12px 0;
    color: #fff;
    font-weight: 800;
    position: relative;
    letter-spacing: -0.5px;
}

.section-header h2::first-letter {
    font-size: 34px;
    color: var(--primary-color);
}

.section-header::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.data-display-grid {
    display: flex;
    gap: 35px;
    margin-bottom: 30px;
}

.text-block-about {
    flex: 1;
}

.text-block-about p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.stats-block {
    width: 220px;
    flex-shrink: 0;
}

.stats-block .data-row {
    margin-top: 12px;
}

.stats-block .data-row:first-child {
    margin-top: 0;
}

.service-item-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item-card:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.service-item-card .icon {
    width: 36px;
    height: 36px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
}

.service-item-card h3 {
    font-size: 13px;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    font-weight: 700;
}

.service-item-card p {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.services-mini-grid.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.articules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.post-thumb {
    margin-bottom: 14px;
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-list-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.events-list-item img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.events-list-item > div {
    flex: 1;
}

.event-meta {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-btn-wrapper {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.contact-btn-wrapper .btn-action {
    padding: 12px 22px;
    display: inline-block;
    font-size: 13px;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: #fff;
}

.info-badge {
    background: var(--primary-color);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
}

.data-value {
    color: var(--gray-text);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 1366px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-side {
        order: 1;
    }

    .contact-form-side {
        order: 2;
    }
}

@media (max-width: 1024px) {
    :root {
        --sidebar-width: 0px;
    }

    html, body {
        overflow: auto;
        height: auto;
    }

    .site-dashboard {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 280px;
        z-index: 1100;
        position: fixed;
        height: 100dvh;
        top: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar::before,
    .sidebar::after,
    .site-dashboard::before,
    .site-dashboard::after {
        display: none;
    }

    .sidebar-logo {
        display: flex;
        padding: 24px 25px 8px;
    }

    .sidebar-logo .logo-text {
        font-size: 22px;
    }

    .sidebar-logo .logo-icon {
        width: 50px;
        height: 50px;
    }

    .sidebar-logo .logo-icon img,
    .sidebar-logo .logo-icon svg {
        width: 50px;
        height: 50px;
    }

    .header-brand.mobile-logo {
        display: flex;
    }

    .header-brand.mobile-logo .logo-text {
        font-size: 18px;
    }

    .content-area {
        margin-left: 0;
        flex: 1;
        height: auto;
        overflow: visible;
        padding-top: 0;
    }

    .dashboard-header {
        height: 72px;
        min-height: 72px;
        padding: 0 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }

    .search-field {
        width: 120px;
        padding: 6px;
        font-size: 13px;
    }

    .search-container .search-form {
        padding: 2px 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(56, 189, 248, 0.15);
        cursor: pointer;
        transition: background 0.3s, border-color 0.3s;
        padding: 10px;
    }

    .mobile-menu-toggle:hover {
        background: rgba(56, 189, 248, 0.1);
        border-color: rgba(56, 189, 248, 0.3);
    }

    .main-dashboard-grid {
        flex-direction: column;
        height: auto;
        padding: 0;
        border-radius: 0;
        gap: 0;
        margin-top: 0;
        width: 100%;
        flex-shrink: 0;
    }

    .fixed-info-card-wrapper {
        width: 100%;
        min-width: 0;
    }

    .fixed-info-card {
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        height: calc(100dvh - 72px);
        min-height: calc(100dvh - 72px);
        border-radius: 0;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(56, 189, 248, 0.08);
        overflow: visible;
        padding-top: 0;
        margin-top: 72px;
        display: flex;
        flex-direction: column;
        border: none;
        position: relative;
        z-index: 10;
        background: var(--sidebar-bg);
    }

    .website-hero-image {
        height: 50dvh;
        border-radius: 0;
        clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
        width: 100%;
        margin-top: -72px;
    }

    .website-logo-icon {
        width: 100px;
        height: 100px;
    }

    .website-card-footer {
        padding: 20px 25px 5px;
    }

    .website-card-footer h3 {
        font-size: 20px;
    }

    .website-trusted {
        padding: 4px 25px;
    }

    .trusted-label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .trust-avatar {
        width: 44px;
        height: 44px;
    }

    .website-social-bar {
        padding: 10px 15px 25px;
        gap: 8px;
        justify-content: center;
    }

    .social-bar-item {
        padding: 14px 6px 12px;
        min-width: unset;
        flex: 1;
    }

    .social-icon-wrap {
        width: 46px;
        height: 46px;
    }

    .social-label {
        font-size: 10px;
    }

    .about-metrics-row,
    .about-metrics-row:not(.is-slider) {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 12px !important;
        padding: 0 20px 10px !important;
        margin-bottom: 25px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .about-metrics-row::-webkit-scrollbar {
        display: none;
    }

    .about-metric-item {
        min-width: calc((100% - 24px) / 2.5) !important;
        flex: 0 0 calc((100% - 24px) / 2.5) !important;
        scroll-snap-align: start !important;
    }

    .dynamic-content-wrapper {
        padding: 30px 20px;
        margin-left: 0;
        border-radius: 0;
        position: relative;
        overflow-y: auto;
        height: auto;
        min-height: auto;
    }

    .content-section {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        display: none;
        transform: translateX(30px);
        visibility: hidden;
        pointer-events: none;
        margin-bottom: 50px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    }

    .content-section.active {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        position: relative;
        transform: translateX(0);
    }

    .content-section.exit {
        opacity: 0;
        transform: translateX(-30px);
        visibility: hidden;
    }

    .data-display-grid {
        flex-direction: column;
        gap: 20px;
    }

    .stats-block {
        width: 100%;
    }

    .services-mini-grid.grid-layout,
    .articules-grid {
        grid-template-columns: 1fr;
    }

    .events-list-item {
        flex-direction: column;
    }

    .events-list-item img {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .content-section.active {
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .website-social-bar {
        padding: 8px 10px 22px;
        gap: 6px;
        width: 100%;
        box-sizing: border-box;
    }

    .social-bar-item {
        flex: 1;
        padding: 10px 4px;
    }

    .dashboard-header {
        height: 72px;
        min-height: 72px;
        padding: 0 16px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .header-brand.mobile-logo .logo-text {
        font-size: 16px;
    }

    .header-brand.mobile-logo .logo-icon {
        width: 44px;
        height: 44px;
    }

    .header-brand.mobile-logo .logo-icon img,
    .header-brand.mobile-logo .logo-icon svg {
        width: 44px;
        height: 44px;
    }

    .header-brand.mobile-logo .typewriter-container {
        font-size: 10px;
    }

    .search-field {
        width: 100px;
        font-size: 12px;
        padding: 5px;
    }

    .search-container .search-form {
        display: none;
        padding: 1px 8px;
        border-radius: 0;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        background: transparent;
        margin: 0;
        z-index: auto;
        box-shadow: none;
        border: none;
    }

    .search-container .search-form.active {
        display: flex;
        width: 140px;
    }

    .search-container .search-form.active .search-field {
        width: 100%;
        background: rgba(255,255,255,0.05);
        border-radius: 6px;
        padding: 6px 10px;
    }

    .mobile-scanner-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: color 0.3s;
        padding: 0;
        color: #fff;
    }

    .mobile-scanner-icon:hover {
        background: rgba(56, 189, 248, 0.1);
        border-color: rgba(56, 189, 248, 0.3);
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: color 0.3s;
        padding: 0;
    }

    .sidebar-logo {
        padding: 20px 20px 8px;
    }

    .sidebar-logo .logo-text {
        font-size: 20px;
    }

    .sidebar-logo .logo-icon {
        width: 44px;
        height: 44px;
    }

    .sidebar-logo .logo-icon img,
    .sidebar-logo .logo-icon svg {
        width: 44px;
        height: 44px;
    }

    .fixed-info-card {
        height: auto;
        min-height: auto;
        padding-top: 72px;
    }

    .website-hero-image {
        height: 40dvh;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }

    .website-logo-icon {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }

    .website-card-footer {
        padding: 65px 20px 6px;
    }

    .website-card-footer h3 {
        font-size: 24px;
    }

    .website-trusted {
        padding: 10px 20px;
    }

    .trusted-label {
        font-size: 10px;
    }

    .trust-avatar {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .website-social-bar {
        padding: 8px 10px 22px;
        gap: 6px;
    }

    .social-bar-item {
        padding: 12px 5px 10px;
        border-radius: 14px;
        flex: 1;
    }

    .social-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .social-icon-wrap svg {
        width: 18px;
        height: 18px;
    }

    .social-label {
        font-size: 9px;
    }

    .about-metrics-row,
    .about-metrics-row:not(.is-slider) {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 10px !important;
        padding: 0 16px 8px !important;
    }

    .about-metric-item {
        min-width: calc((100% - 20px) / 2.5) !important;
        flex: 0 0 calc((100% - 20px) / 2.5) !important;
        padding: 20px 10px;
    }

    .metric-circle {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .metric-number {
        font-size: 24px;
    }

    .metric-sub {
        font-size: 10px;
    }

    .sidebar-navigation a {
        font-size: 13px;
        padding: 12px 16px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header h2::first-letter {
        font-size: 28px;
    }

    .dynamic-content-wrapper {
        padding: 20px 0;
        border-radius: 0;
        margin-left: 0;
        width: 100% !important;
        box-sizing: border-box;
    }

    .main-dashboard-grid {
        padding: 0;
        border-radius: 0;
    }
}

@media (min-width: 1025px) and (max-width: 1366px) {
    :root {
        --sidebar-width: 0px;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 280px;
        z-index: 1100;
        position: fixed;
        height: 100vh;
        top: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar::before,
    .sidebar::after {
        display: none;
    }

    .sidebar-logo {
        display: flex;
        padding: 20px 24px 8px;
    }

    .sidebar-logo .logo-text {
        font-size: 20px;
    }

    .sidebar-logo .logo-icon {
        width: 50px;
        height: 50px;
    }

    .sidebar-logo .logo-icon img,
    .sidebar-logo .logo-icon svg {
        width: 50px;
        height: 50px;
    }

    .content-area {
        margin-left: 0;
        padding-top: 64px;
    }

.content-area::-webkit-scrollbar {
    width: 6px;
}

.content-area::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.2);
    border-radius: 3px;
}

    .dashboard-header {
        padding: 0 24px;
    }

    .header-brand.mobile-logo {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: color 0.3s;
        order: 3;
    }

    .mobile-menu-toggle:hover {
        background: rgba(56, 189, 248, 0.1);
        border-color: rgba(56, 189, 248, 0.3);
    }

    .main-dashboard-grid {
        padding: 24px;
        height: calc(100vh - 64px);
        overflow: hidden;
    }

    .fixed-info-card-wrapper {
        min-width: 340px;
        width: 36%;
    }

    .fixed-info-card {
        height: 100%;
        overflow: hidden;
    }

    .website-hero-image {
        height: 260px;
    }

    .website-logo-icon {
        width: 80px;
        height: 80px;
    }

    .website-card-footer {
        padding: 55px 20px 5px;
    }

    .website-card-footer h3 {
        font-size: 15px;
    }

    .website-trusted {
        padding: 8px 24px;
    }

    .trust-avatar {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

    .website-social-bar {
        padding: 5px 10px 10px;
        gap: 4px;
    }

    .social-bar-item {
        padding: 10px 4px 8px;
        border-radius: 12px;
    }

    .social-icon-wrap {
        width: 36px;
        height: 36px;
    }

    .social-icon-wrap svg {
        width: 16px;
        height: 16px;
    }

    .social-label {
        font-size: 8px;
    }

    .dynamic-content-wrapper {
        margin-left: 24px;
        padding: 28px 32px;
        height: 100%;
        overflow: hidden;
    }

    .content-section {
    }

    .content-section.active {
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #334155 #0f172a;
}
/* --- Integrated Plugin Styles --- */

.emn-radio-label {
	text-align: left;
}

.emn-form-field label {
    color: #fff;
    margin-bottom: 5px;
    text-align: left !important;
}

/* single page content */
.emn-about-content {
    color: white;
    padding-left: 10px !important;
}
.emn-flip-card-back {
	color: white;
}

.emn-flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 0;
}
.emn-contestant-search-input, .emn-award-search-input {
    width: 100%;
}
.emn-contest-header, .emn-award-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    gap: 1.5rem;
}

/* body content */
@media (max-width: 768px) {
    .emn-event-body, .emn-about-content {
        padding-left: 0rem;
        padding-right: 0rem;
        max-width: 100%!important;
    }

    .emn-nominees-grid, .emn-contestants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.2rem;
    }

    .emn-contestant-name, .emn-nominee-name {
        font-size: 0.8em;
    }

    .emn-ticket-purchase-section, .emn-contest-wrapper, .emn-award-wrapper, .emn-public-form {
        padding-left: 0.3rem;
        padding-right: 0.3rem;
        padding-top: 0.7rem;
    }
}

/* event list */
.emn-futuristic-grid-wrapper {
    padding: 0rem;
}

.emn-events-shortcode-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.emn-events-shortcode-grid:has(> :only-child) {
    grid-template-columns: 1fr;
    max-width: 600px;
    justify-items: center;
}

.emn-event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.emn-event-card-link:hover {
    transform: translateY(-8px) scale(1.02);
}

.emn-event-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.emn-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: -1;
    border-radius: 20px;
}

.emn-event-card-link:hover .emn-event-card {
    background: #14181a;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.emn-event-card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.emn-event-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.emn-event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.emn-event-card-link:hover .emn-event-card-image img {
    transform: scale(1.1);
}

.emn-event-card-content {
    padding: 1.25rem;
}

.emn-event-card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emn-event-card-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.emn-event-card-dates {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.emn-event-card-dates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.emn-event-date {
    color: #ffffff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.emn-event-date:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top:10px !important;
}

.emn-event-date::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.emn-event-date:first-child::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238ad3f2'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z'/%3E%3C/svg%3E");
}

.emn-event-date:last-child::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f87171'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z'/%3E%3C/svg%3E");
}

.emn-event-date strong {
    color: #8ad3f2;
    font-weight: 600;
    min-width: 60px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.emn-event-date:last-child strong {
    color: #f87171;
}

.emn-event-card-dates::after {
    content: 'TIMELINE';
    position: absolute;
    top: 0px;
    right: 12px;
    background: linear-gradient(135deg, #388ae8, #3b82f6);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.emn-event-card-link:hover .emn-event-card-dates {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .emn-events-shortcode-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .emn-events-shortcode-grid:has(> :only-child) {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .emn-events-shortcode-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        padding: 0.5rem 1rem;
        box-sizing: border-box;
        overflow-x: hidden;
        width: 100%;
    }

    .emn-event-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 110px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }

    .emn-event-card-image {
        width: 105px;
        height: 105px !important;
        flex-shrink: 0;
    }

    .emn-event-card-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .emn-event-card-content {
        padding: 0.4rem 0.6rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        overflow: hidden;
        height: 100%;
        box-sizing: border-box;
        gap: 2px;
        min-width: 0;
    }

    .emn-event-card-title {
        font-size: 0.9rem;
        margin: 0;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #fff;
        color: #fff !important;
        line-height: 1.2;
        font-weight: 700;
    }

    .emn-event-card-excerpt {
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        font-size: 0.7rem;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--gray-text);
        opacity: 0.7;
        line-height: 1.2;
        max-height: 3.6em;
        white-space: normal;
    }

    .emn-event-card-dates {
        display: flex !important;
        flex-direction: row !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        gap: 5px !important;
        margin-top: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        align-items: center;
        height: auto !important;
        overflow: visible !important;
        flex-wrap: wrap !important;
    }

    .emn-event-card-dates::before,
    .emn-event-card-dates::after {
        display: none !important;
    }

    .emn-event-date {
        font-size: 0.6rem !important;
        padding: 1px 5px !important;
        border-radius: 4px !important;
        margin: 0 !important;
        text-shadow: none !important;
        border: none !important;
        display: inline-block !important;
        white-space: nowrap !important;
        max-width: none !important;
        line-height: 1.2;
    }

    .emn-event-date:first-child {
        background: rgba(56, 189, 248, 0.15) !important;
        color: #38BDF8 !important;
    }

    .emn-event-date:last-child {
        background: rgba(239, 68, 68, 0.15) !important;
        color: #EF4444 !important;
    }

    .emn-event-date::before {
        display: none !important;
    }

    .emn-event-date strong {
        display: none !important;
    }

    .emn-events-shortcode-grid:has(> :only-child) {
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .emn-events-shortcode-grid {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .emn-event-card {
        min-height: 90px;
    }

    .emn-event-card-image {
        width: 90px;
        min-height: 90px;
    }

    .emn-event-card-content {
        padding: 0.5rem 0.75rem;
    }

    .emn-event-card-title {
        font-size: 0.9rem;
    }

    .emn-event-date {
        font-size: 0.65rem;
    }
}



/* --- Sidebar Pinned Revenue --- */
.sidebar-pinned-revenue {
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
    background: var(--sidebar-bg);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.revenue-chart-container {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(56, 189, 248, 0.02));
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.revenue-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.revenue-glass-chart {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.revenue-glass-chart::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.revenue-bars-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    align-items: flex-end;
    height: 80px;
    scrollbar-width: none;
}

.revenue-bars-scroll::-webkit-scrollbar {
    display: none;
}

.glass-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: flex-end;
    min-width: 30px;
}

.glass-bar-column {
    width: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    height: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.glass-bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary-color), #fff, var(--primary-color));
    background-size: 100% 200%;
    border-radius: 20px;
    height: 0;
    animation: growBar 1.5s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards, shimmerBar 3s linear infinite;
    box-shadow: 0 0 20px var(--primary-color), 0 0 10px rgba(255, 255, 255, 0.5);
    filter: brightness(1.1);
}

.glass-bar-item:last-child .glass-bar-fill {
    animation: growBar 1.5s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards, shimmerBar 3s linear infinite, pulseBar 2s ease-in-out infinite;
}

@keyframes growBar {
    from { height: 0; }
    to { height: var(--bar-height); }
}

@keyframes shimmerBar {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

@keyframes pulseBar {
    0%, 100% { filter: brightness(1.1) drop-shadow(0 0 5px var(--primary-color)); }
    50% { filter: brightness(1.4) drop-shadow(0 0 15px var(--primary-color)); }
}

.glass-month-label {
    font-size: 8px;
    color: var(--gray-text);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* --- Custom Select Styling --- */
.custom-select-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.custom-select {
    width: 100%;
    padding: 12px;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

.custom-select option {
    background: var(--sidebar-bg);
    color: #fff;
    padding: 10px;
}

.custom-select-wrapper::after {
    content: '\f347';
    font-family: dashicons;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    font-size: 18px;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
}

/* --- Event Tabs Styling --- */
.events-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.events-tabs-nav::-webkit-scrollbar {
    display: none;
}

.event-tab-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--gray-text);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.event-tab-btn:hover {
    background: rgba(56, 189, 248, 0.08);
    color: #fff;
}

.event-tab-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.event-tab-content {
    display: none;
}

.event-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Updated Header & Verification UI --- */

.header-right {
    margin-left: auto;
}

.desktop-scanner-icon {
    display: flex;
    align-items: center;
    color: var(--gray-text);
    margin-right: 10px;
}

@media (min-width: 1025px) {
    .ticket-verification-container {
        order: 2;
        margin-left: 20px;
    }
}

@media (max-width: 1024px) {
    .desktop-scanner-icon {
        display: none;
    }

    .search-container .search-form {
        display: none;
        padding: 0 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        align-items: center;
        width: 180px;
        margin-right: 10px;
        border: none;
        box-shadow: none;
        position: static;
    }

    .search-container .search-form.active {
        display: flex;
    }

    .search-container .search-form.active .search-field {
        background: transparent;
        width: 100%;
        padding: 8px 0;
    }

    .mobile-scanner-icon-inside {
        display: flex;
        align-items: center;
        color: var(--primary-color);
        cursor: pointer;
        padding-left: 10px;
    }

    .mobile-scanner-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: #fff;
        background: transparent;
        border: none;
        padding: 0;
    }

    .mobile-menu-toggle {
        background: transparent;
        border: none;
        padding: 0;
        width: 40px;
        height: 40px;
        order: 2;
    }

    .ticket-verification-container {
        order: 1;
    }
}

/* Blog Content Styling */
.post-entry-content h1,
.post-entry-content h2,
.post-entry-content h3,
.post-entry-content h4 {
    color: #fff;
    margin: 1.5rem 0 1rem;
}
.post-entry-content p {
    margin-bottom: 1.25rem;
}
.post-entry-content ul,
.post-entry-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.post-entry-content li {
    margin-bottom: 0.5rem;
}
.post-entry-content strong,
.post-entry-content b {
    color: #fff;
    font-weight: 700;
}
.post-entry-content em,
.post-entry-content i {
    font-style: italic;
}
.post-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

/* Client Slider Styles */
.client-slider-container {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 15px 0;
    position: relative;
    background: rgb(44 102 129 / 0%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.client-slider-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.client-slider-container:hover .client-slider-track {
    animation-play-state: paused;
}

.client-slide {
    flex: 0 0 auto;
}

.client-slide img {
    height: 80px;
    width: auto;
    opacity: 0.5;
    transition: all 0.4s ease;
    filter: grayscale(100%) brightness(1.5);
}

.client-slide img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .client-slider-container {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 30px;
        padding: 10px 0;
    }
    .client-slider-track {
        gap: 40px;
        animation-duration: 20s;
    }
    .client-slide img {
        height: 60px;
    }
    .about-metrics-row {
        padding: 0 10px 8px !important;
    }
}

/* Skeleton Loading Styles */
.ox-skeleton-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    overflow: hidden;
}

.shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sk-sidebar {
    width: var(--sidebar-width);
    height: 100%;
    background: var(--sidebar-bg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sk-logo { width: 120px; height: 30px; border-radius: 6px; }
.sk-nav-item { width: 100%; height: 44px; border-radius: 12px; }

.sk-main {
    flex: 1;
    display: flex;
    padding: 30px;
    gap: 30px;
}

.sk-card {
    width: 38%;
    min-width: 380px;
    height: 600px;
    background: var(--sidebar-bg);
    border-radius: 20px;
    overflow: hidden;
}

.sk-hero { width: 100%; height: 300px; }
.sk-card-content { padding: 30px; display: flex; flex-direction: column; gap: 15px; align-items: center; }
.sk-title-lg { width: 70%; height: 28px; border-radius: 6px; }
.sk-text-sm { width: 50%; height: 14px; border-radius: 4px; }
.sk-avatars { display: flex; gap: 10px; margin-top: 20px; }
.sk-avatar-circle { width: 48px; height: 48px; border-radius: 50%; }

.sk-content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sk-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sk-metric-item { height: 120px; border-radius: 16px; background: rgba(255,255,255,0.02); }

.sk-text-block { display: flex; flex-direction: column; gap: 12px; }
.sk-line { width: 100%; height: 16px; border-radius: 4px; background: rgba(255,255,255,0.02); }
.sk-line-short { width: 60%; }

/* Single Page Skeleton */
.sk-single-container {
    width: 100%;
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sk-featured { width: 100%; height: 400px; border-radius: 15px; }

@media (max-width: 1024px) {
    .sk-sidebar { display: none; }
    .sk-main { flex-direction: column; padding: 20px; }
    .sk-card { width: 100%; min-width: 0; height: auto; min-height: 95dvh; padding-bottom: 30px; }
    .sk-hero { height: 40vh; }
    .sk-metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

.ox-skeleton-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}