* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent-orange: #e85a1f;
    --accent-warm: #f5a623;
    --accent-red: #ff3b30;
    --accent-pink: #ff2d78;
    --accent-purple: #af52de;
    --accent-cyan: #00d4aa;
    --accent-green: #4ade80;
    --border-color: #222222;
    --border-light: #2a2a2a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   LOGO (single image - works on all screens)
   ============================================ */

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 92px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(238, 126, 78, 0.5));
}

.logo:hover .logo-img {
    transform: scale(1.05);
}


/* ============================================
   NAV LINKS
   ============================================ */

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-warm));
    transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2100;
    padding: 8px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Staggered link animations */
.nav-links-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.nav-links-mobile li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-overlay.active .nav-links-mobile li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .nav-links-mobile li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .nav-links-mobile li:nth-child(2) { transition-delay: 0.18s; }
.mobile-nav-overlay.active .nav-links-mobile li:nth-child(3) { transition-delay: 0.26s; }
.mobile-nav-overlay.active .nav-links-mobile li:nth-child(4) { transition-delay: 0.34s; }

.nav-links-mobile a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 4px 0;
}

.nav-links-mobile a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-warm));
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-radius: 2px;
}

.nav-links-mobile a:hover::after {
    width: 100%;
}

.nav-links-mobile a:hover {
    color: var(--accent-orange);
    transform: scale(1.05);
}

.nav-cta-mobile {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.45s;
    background: var(--accent-orange);
    color: white;
    padding: 16px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.mobile-nav-overlay.active .nav-cta-mobile {
    opacity: 1;
    transform: translateY(0);
}

.nav-cta-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 90, 31, 0.3);
}

/* Close button */
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.mobile-nav-overlay.active .mobile-menu-close {
    opacity: 1;
    transform: rotate(0) scale(1);
    transition-delay: 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Background animated shapes */
.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 90, 31, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.mobile-nav-overlay::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}
/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, opacity 0.3s;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.btn-primary:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   TRUST
   ============================================ */

.trust-section {
    padding: 32px 40px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.trust-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* ============================================
   FEATURED
   ============================================ */

.featured-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-header-left h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.featured-header-left h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.featured-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.featured-view-all:hover {
    color: var(--text-primary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-warm));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
}

.featured-genre-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.featured-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 2;
}

.featured-card:hover .featured-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.featured-content {
    padding: 24px;
}

.featured-date-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.featured-date-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-warm);
}

.featured-price-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 212, 170, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

.featured-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.featured-artist {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.featured-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.featured-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.featured-card:hover .featured-cta {
    gap: 8px;
    color: var(--accent-orange);
}

.featured-card:nth-child(1) .featured-genre-tag { color: var(--accent-orange); }
.featured-card:nth-child(2) .featured-genre-tag { color: var(--accent-pink); }
.featured-card:nth-child(3) .featured-genre-tag { color: var(--accent-purple); }

/* ============================================
   WHY
   ============================================ */

.why-section {
    padding: 100px 40px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.why-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
/* ============================================
   SHOWS
   ============================================ */

.shows-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.shows-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.shows-header-left h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.shows-header-left h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.shows-header-left h2 span {
    color: var(--text-secondary);
}

.shows-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.shows-view-all:hover {
    color: var(--text-primary);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.show-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-warm));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.show-card:hover::before {
    opacity: 1;
}

.show-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.show-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.show-card:hover .show-image img {
    transform: scale(1.1);
}

.show-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
}

.show-genre-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.show-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 2;
}

.show-card:hover .show-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.show-content {
    padding: 24px;
}

.show-date-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.show-date-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-warm);
}

.show-price-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 212, 170, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

.show-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.show-artist {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.show-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.show-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.show-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.show-card:hover .show-cta {
    gap: 8px;
    color: var(--accent-orange);
}

.show-card:nth-child(1) .show-genre-tag { color: var(--accent-orange); }
.show-card:nth-child(2) .show-genre-tag { color: var(--accent-pink); }
.show-card:nth-child(3) .show-genre-tag { color: var(--accent-purple); }

/* ============================================
   SCHEDULE
   ============================================ */

.schedule-section {
    padding: 0 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.schedule-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.schedule-month-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-orange);
    background: rgba(232, 90, 31, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(232, 90, 31, 0.2);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 60px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--bg-dark);
    transition: background 0.3s;
    cursor: pointer;
}

.schedule-item:hover {
    background: var(--bg-card);
}

.schedule-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.schedule-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.schedule-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.schedule-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.schedule-arrow {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.3s;
}

.schedule-item:hover .schedule-arrow {
    transform: translateX(4px);
    color: var(--text-primary);
}

/* ============================================
   ARTISTS
   ============================================ */

.artists-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.artists-header {
    text-align: center;
    margin-bottom: 60px;
}

.artists-header h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.artists-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.artists-header h2 span {
    color: var(--text-secondary);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.artist-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-light);
}

.artist-genre {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.artist-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.artist-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.artist-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   PRICING
   ============================================ */

.pricing-section {
    padding: 0 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.pricing-header p {
    color: var(--text-secondary);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.pricing-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.pricing-price span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 700;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.testimonials-header h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.testimonial-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-warm);
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-warm));
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter-section {
    padding: 100px 40px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-section {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 60px;
}

.marquee-track span::after {
    content: "●";
    color: var(--accent-orange);
    font-size: 0.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SMALL DESKTOP (logo shrink)
   ============================================ */

@media (max-width: 960px) {
    .navbar {
        padding: 14px 24px;
    }

    .logo-img {
        height: 80px;
    }
}

/* ============================================
   TABLET RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .featured-grid,
    .shows-grid,
    .why-grid,
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px) saturate(1.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links {
        display: none !important;
    }

    .navbar::before {
        display: none !important;
    }

    .logo {
        display: inline-flex !important;
    }

    .logo-img {
        height: 72px;
        filter: drop-shadow(0 0 6px rgba(238, 126, 78, 0.4));
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .mobile-menu-btn:active {
        transform: scale(0.92);
        background: rgba(232, 90, 31, 0.15);
        border-color: rgba(232, 90, 31, 0.3);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .trust-section {
        padding: 24px 20px;
    }

    .trust-grid {
        gap: 20px;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .featured-section,
    .shows-section,
    .schedule-section,
    .artists-section,
    .pricing-section,
    .testimonials-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .why-section {
        padding: 60px 20px;
    }

    .newsletter-section {
        padding: 60px 20px;
    }

    .featured-grid,
    .shows-grid,
    .why-grid,
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }

    .schedule-arrow {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-auth {
        gap: 6px;
    }

    .nav-login {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .nav-signup {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .nav-cta {
        display: none;
    }

    .logo-img {
        height: 64px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .mobile-nav-overlay {
        display: none !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .navbar::before {
        display: none !important;
    }

    .logo {
        display: inline-flex !important;
    }

    .logo-img {
        height: 84px;
    }
}
/* ============================================
   LIVE CHAT WIDGET
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9289c4 0%, #685e8b 50%, #4a4269 100%);
    border: 2px solid rgba(146, 137, 196, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 84x 20px rgba(146, 137, 196, 0.35), 
                0 0 0 4px rgba(146, 137, 196, 0.1),
                inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.chat-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    border-radius: 50%;
}

.chat-toggle:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(146, 137, 196, 0.5), 
                0 0 0 6px rgba(146, 137, 196, 0.15),
                inset 0 1px 0 rgba(255,255,255,0.15);
}

.chat-toggle:active {
    transform: scale(0.95);
}

.chat-toggle svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.chat-toggle:hover svg {
    transform: scale(1.1);
}

.chat-toggle .notification-dot {
    position: absolute;
    top: 4px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(160, 214, 124, 0.7);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(232, 90, 31, 0);
    }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 520px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(146, 137, 196, 0.15);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.6),
                0 0 0 1px rgba(146, 137, 196, 0.08);
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #1e1455 0%, #150941 100%);
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.chat-header-info {
    position: relative;
    z-index: 1;
}

.chat-header-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
}

.chat-header-info span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.chat-status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
    animation: pulse-dot 2s infinite;
}

.chat-close {
    margin-left: auto;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover { 
    opacity: 1; 
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(146, 137, 196, 0.02) 100%);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(146, 137, 196, 0.2);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(146, 137, 196, 0.4);
}

.chat-message {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    animation: messageSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    word-wrap: break-word;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-message.bot {
    background: linear-gradient(135deg, #1e1e3a 0%, #252545 100%);
    color: rgba(255,255,255,0.85);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    border: 1px solid rgba(146, 137, 196, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.chat-message.user {
    background: linear-gradient(135deg, #9289c4 0%, #685e8b 100%);
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    box-shadow: 0 4px 16px rgba(146, 137, 196, 0.25);
}

.chat-message-time {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    text-align: right;
}

.chat-input-area {
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(146, 137, 196, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
    background: linear-gradient(0deg, #0f0f1a 0%, transparent 100%);
}

.chat-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 100px;
    border: 1px solid rgba(146, 137, 196, 0.15);
    background: rgba(15, 15, 26, 0.8);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chat-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.chat-input:focus {
    border-color: rgba(146, 137, 196, 0.4);
    box-shadow: 0 0 0 4px rgba(146, 137, 196, 0.08),
                0 4px 12px rgba(0,0,0,0.2);
    background: rgba(15, 15, 26, 0.95);
}

.chat-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9289c4 0%, #685e8b 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(146, 137, 196, 0.3);
}

.chat-send:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(146, 137, 196, 0.4);
}

.chat-send:active {
    transform: scale(0.95);
}

.chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #1e1e3a 0%, #252545 100%);
    border-radius: 20px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    width: fit-content;
    border: 1px solid rgba(146, 137, 196, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #9289c4, #685e8b);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Welcome Message */
.chat-welcome {
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.chat-welcome-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    opacity: 0.6;
}

/* Quick Reply Buttons */
.chat-quick-replies {
    display: flex;
    gap: 8px;
    padding: 0 20px 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.chat-quick-replies::-webkit-scrollbar {
    display: none;
}

.chat-quick-reply {
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(146, 137, 196, 0.1);
    border: 1px solid rgba(146, 137, 196, 0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.chat-quick-reply:hover {
    background: rgba(146, 137, 196, 0.2);
    border-color: rgba(146, 137, 196, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 32px);
        height: 70vh;
        border-radius: 20px;
    }
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    .chat-toggle {
        width: 54px;
        height: 54px;
    }
}