/* ========================================
   EVENT INDEX PAGE — MBG DESIGN SYSTEM
   Konsisten dengan landing_v2 & promotion
   ======================================== */

:root {
    --primary-gradient: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    --primary-color: #2c5f5d;
    --secondary-color: #5a7c7a;
    --accent-color: #8ba9a7;
    --accent-gradient: linear-gradient(135deg, #a8c5c3 0%, #8ba9a7 100%);
    --text-dark: #2c3e50;
    --text-light: #e8ebe9;
    --bg-light: #fafaf8;
    --bg-dark: #1a1f1e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*::-webkit-scrollbar {
    display: none;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    max-width: 100vw;
}
body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}
body.menu-open {
    overflow: hidden;
}
body:not(.loaded) > *:not(.page-loader) {
    opacity: 0;
    visibility: hidden;
}
body.loaded {
    overflow-x: hidden;
    overflow-y: auto;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f6f4 50%, #e8ebe9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
body.dark-mode .page-loader {
    background: linear-gradient(135deg, #1a1f1e 0%, #252a29 50%, #2c3e3c 100%);
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    padding: 0 20px;
}
.loader-logo {
    opacity: 0;
    animation: logoFadeIn 1s ease forwards 0.3s;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.loader-logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.loader-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 50px;
}
.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinnerRotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--secondary-color);
}
.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--accent-color);
}
@keyframes spinnerRotate {
    100% {
        transform: rotate(360deg);
    }
}
.loader-progress {
    width: 300px;
    height: 3px;
    background: rgba(44, 95, 93, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 25px;
}
.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    width: 0%;
    animation: progressLoad 3s ease-in-out forwards;
}
@keyframes progressLoad {
    0% {
        width: 0%;
    }
    30% {
        width: 30%;
    }
    60% {
        width: 60%;
    }
    90% {
        width: 90%;
    }
    100% {
        width: 100%;
    }
}
.loader-text {
    font-size: 12px;
    color: #6a7a78;
    letter-spacing: 2px;
    opacity: 0;
    animation: textFadeIn 0.5s ease forwards 1s;
}
body.dark-mode .loader-text {
    color: #b8c4c2;
}
@keyframes textFadeIn {
    to {
        opacity: 1;
    }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1200;
    background: rgba(250, 250, 248, 0.98);
    box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(44, 95, 93, 0.06);
    transition: all 0.3s ease;
}
body.dark-mode header {
    background: rgba(26, 31, 30, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(168, 197, 195, 0.08);
}

.header-left {
    flex: 0 0 auto;
}
.header-logo-link {
    text-decoration: none;
}
.header-logo-circle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(44, 95, 93, 0.2);
    transition: all 0.3s ease;
}
.header-logo-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 95, 93, 0.3);
}
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
/* Constrain header logo on all screens */
.header-main-logo {
    max-width: 120px;
    height: auto !important;
    max-height: 40px;
    object-fit: contain;
}
.menu-btn {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 103;
}
.menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: 0.3s;
}
body.dark-mode .menu-btn span {
    background: var(--text-light);
}
.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 102;
    padding: 100px 50px 120px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
}
body.dark-mode .sidebar {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}
.sidebar.active {
    transform: translateX(0);
}
.sidebar-logo {
    position: absolute;
    left: 50px;
    top: 30px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}
.sidebar.active .sidebar-logo {
    opacity: 1;
}
.sidebar-logo h2 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: "Playfair Display", serif;
}
body.dark-mode .sidebar-logo h2 {
    color: var(--text-light);
}
.sidebar-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: -3px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sidebar-close {
    position: absolute;
    right: 30px;
    top: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}
.sidebar.active .sidebar-close {
    opacity: 1;
}
.sidebar-close span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
}
body.dark-mode .sidebar-close span {
    background: var(--text-light);
}
.sidebar-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.sidebar-close span:nth-child(2) {
    opacity: 0;
}
.sidebar-close span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.sidebar nav ul {
    list-style: none;
}
.sidebar nav ul li {
    margin: 30px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}
.sidebar.active nav ul li {
    opacity: 1;
    transform: translateX(0);
}
.sidebar.active nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}
.sidebar.active nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}
.sidebar.active nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}
.sidebar.active nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}
.sidebar.active nav ul li:nth-child(5) {
    transition-delay: 0.5s;
}
.sidebar.active nav ul li:nth-child(6) {
    transition-delay: 0.6s;
}
.sidebar nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: 0.3s;
    display: block;
    position: relative;
}
body.dark-mode .sidebar nav ul li a {
    color: var(--text-light);
}
.sidebar nav ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

/* ===== DARK MODE TOGGLE ===== */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 101;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dark-mode-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(44, 95, 93, 0.35);
}
.dark-mode-toggle svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
}
.dark-mode-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}
.dark-mode-toggle .moon-icon {
    opacity: 1;
}
body.dark-mode .dark-mode-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
body.dark-mode .dark-mode-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

/* ===== EVENTS HERO BANNER ===== */
.events-hero {
    background: var(--primary-gradient);
    padding: 100px 2.5rem 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.events-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.events-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--bg-light);
    clip-path: ellipse(55% 100% at 50% 100%);
}
body.dark-mode .events-hero::after {
    background: var(--bg-dark);
}

.events-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.events-hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}
.events-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}
.events-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
}
.events-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 9px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.events-hero-back:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-4px);
}
.events-hero-back svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.events-hero-back:hover svg {
    transform: translateX(-3px);
}

/* ===== EVENTS GRID SECTION ===== */
.events-main {
    padding: 50px 60px 100px;
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: hidden;
}

.events-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.events-section-label h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}
body.dark-mode .events-section-label h2 {
    color: var(--text-light);
}
.events-section-label .divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(44, 95, 93, 0.2) 0%,
        transparent 100%
    );
}
.events-count-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    background: rgba(44, 95, 93, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}
body.dark-mode .events-count-badge {
    background: rgba(138, 169, 167, 0.12);
    color: var(--accent-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 100%);
    gap: 20px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    justify-content: start !important;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

@media (min-width: 1201px) {
    .events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== EVENT CARD ===== */
.event-card-v2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.event-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 0;
    background: #e8ebe9;
    border-radius: 20px;
    height: 480px;
}
body.dark-mode .event-img-wrapper {
    background: #252a29;
}
.event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.event-card-v2:hover .event-img-wrapper img {
    transform: scale(1.07);
}

.event-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(27, 58, 56, 0.6) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.event-card-v2:hover .event-img-overlay {
    opacity: 1;
}

.event-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
body.dark-mode .event-date-badge {
    background: var(--bg-dark);
}
.event-date-badge .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}
.event-date-badge .month {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.event-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: white;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.event-date-pill {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 3px 15px rgba(44, 95, 93, 0.3);
}
.event-title-v2 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: white !important;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    letter-spacing: -0.01em;
}
.event-month-year-v2 {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 1px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}
.event-desc-v2 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.event-location-v2 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: normal !important;
}
.event-learn-more-btn {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 24px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    width: fit-content;
    margin-top: 8px;
}
.event-card-v2:hover .event-learn-more-btn {
    background: white;
    color: var(--primary-color);
    border-color: white;
}
.event-card-v2.event-hidden {
    display: none;
}

/* Redesigned Logo Badge */
.event-card-logo-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 140px;
}
.event-card-logo-badge img {
    height: 35px !important;
    width: auto !important;
    object-fit: contain;
}
.event-card-logo-badge .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.event-card-logo-badge .logo-text .main {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}
.event-card-logo-badge .logo-text .sub {
    font-size: 7px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.2px;
}
body.dark-mode .event-card-logo-badge {
    background: rgba(255, 255, 255, 0.9);
}

/* ===== LOAD MORE ===== */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}
.btn-load-more {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 16px 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}
.btn-load-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 93, 0.25);
}
body.dark-mode .btn-load-more {
    color: var(--accent-color);
    border-color: var(--accent-color);
}
body.dark-mode .btn-load-more:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
}

/* ===== EMPTY STATE ===== */
.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}
.no-events h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.no-events p {
    color: #888;
    font-size: 0.95rem;
}

/* ===== FOOTER (identik dengan directory) ===== */
footer {
    background: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    color: white;
    padding: 80px 40px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    box-sizing: border-box;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(245, 245, 220,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(245, 245, 220,0.03)"/></svg>');
    opacity: 0.5;
}
body.dark-mode footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}
.footer-column h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
}
.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-links a::before {
    content: "\2192";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: #f5f5dc;
    transform: translateX(10px);
}
.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}
.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: #f5f5dc;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-item a:hover {
    color: #f5f5dc;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}
.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 95, 93, 0.3);
}
.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 30px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-brand-logo {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}
.footer-brand-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(44, 95, 93, 0.12);
    box-shadow: 0 -4px 20px rgba(44, 95, 93, 0.12);
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
body.dark-mode .mobile-sticky-cta {
    background: rgba(26, 31, 30, 0.97);
    border-top: 1px solid rgba(168, 197, 195, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-radius: 8px;
}
.mobile-cta-btn:hover,
.mobile-cta-btn:active {
    background: rgba(44, 95, 93, 0.08);
    color: var(--primary-color);
}
body.dark-mode .mobile-cta-btn {
    color: var(--accent-color);
}
.mobile-cta-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    transition: stroke 0.2s ease;
}
body.dark-mode .mobile-cta-btn svg {
    stroke: var(--accent-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .events-main {
        padding: 40px 24px 80px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    /* .footer-container { padding: 0 24px; } */
}
@media (max-width: 576px) {
    .events-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        padding-bottom: 20px;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    .events-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .event-card-v2 {
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        padding: 0 5px;
    }
    .events-main {
        padding: 30px 16px 80px;
    }
    .events-hero {
        padding: 90px 1.2rem 60px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
    }
}
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    /* Make .logo part of flex flow on mobile so hamburger stays right */
    .logo {
        position: static;
        transform: none;
        left: auto;
    }
    .header-left {
        display: none;
    }
    /* Match landing_v2: keep logo at 45px height */
    .header-main-logo {
        height: 45px !important;
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain;
    }
    .mobile-sticky-cta {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
    footer {
        padding: 60px 20px 70px;
    }
    /* Match landing_v2 footer responsive layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-contact-item a {
        font-size: 14px;
    }
    .footer-links a {
        font-size: 14px;
    }
    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    .dark-mode-toggle {
        bottom: 85px;
        right: 16px;
        width: 46px;
        height: 46px;
    }

    /* Carousel Nav Buttons for mobile - Positioned Below Cards */
    .events-carousel-container {
        position: relative;
        padding-bottom: 20px; /* Space for buttons */
    }
    
    .events-carousel-nav {
        display: none; /* Desktop hidden */
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    @media (max-width: 768px) {
        .events-carousel-nav {
            display: flex; /* Show only on mobile */
        }
    }

    .events-nav-btn {
        width: 48px;
        height: 48px;
        background: #2c5f5d;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
        padding: 0;
    }

    body.dark-mode .events-nav-btn {
        background: #1a3a38;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    .events-nav-btn:hover {
        transform: translateY(-2px);
        background: #1a3a38;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    .events-nav-btn:active {
        transform: translateY(0) scale(0.95);
    }

    .events-nav-btn svg {
        width: 24px;
        height: 24px;
        stroke: white;
        stroke-width: 2.5;
    }

    .events-nav-btn.disabled {
        opacity: 0.3;
        pointer-events: none;
        box-shadow: none;
    }
}

/* ============================================================
   UI/UX IMPROVEMENTS — 11 items
   ============================================================ */

/* ===== #5: HERO STATS ===== */
.events-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 24px auto 28px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 10px 24px;
    backdrop-filter: blur(10px);
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 18px;
}
.hero-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.hero-stat-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}
.hero-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== #1 & #8: FILTER TOOLBAR ===== */
.events-filter-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
    padding: 16px 20px;
    background: rgba(44, 95, 93, 0.04);
    border: 1px solid rgba(44, 95, 93, 0.1);
    border-radius: 14px;
}
body.dark-mode .events-filter-toolbar {
    background: rgba(168, 197, 195, 0.05);
    border-color: rgba(168, 197, 195, 0.1);
}
.events-filter-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Status pills */
.event-status-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.event-status-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1.5px solid rgba(44, 95, 93, 0.2);
    background: transparent;
    color: var(--secondary-color);
    transition: all 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.event-status-pill.active,
.event-status-pill:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
body.dark-mode .event-status-pill {
    color: var(--accent-color);
    border-color: rgba(168, 197, 195, 0.2);
}
body.dark-mode .event-status-pill.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Month pills */
.event-month-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.event-month-pill {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 1.5px solid rgba(44, 95, 93, 0.15);
    background: transparent;
    color: #888;
    transition: all 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.event-month-pill.active,
.event-month-pill:hover {
    background: rgba(44, 95, 93, 0.1);
    color: var(--primary-color);
    border-color: rgba(44, 95, 93, 0.3);
}

/* Sort select */
.events-sort-select {
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    border: 1.5px solid rgba(44, 95, 93, 0.2);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232c5f5d' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}
.events-sort-select:focus {
    border-color: var(--primary-color);
}
body.dark-mode .events-sort-select {
    background-color: #252a29;
    color: var(--accent-color);
    border-color: rgba(168, 197, 195, 0.2);
}

/* ===== #3: EVENT STATUS BADGE on image ===== */
.event-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.status-upcoming {
    background: rgba(44, 95, 93, 0.85);
    color: white;
}
.status-ongoing {
    background: rgba(39, 174, 96, 0.9);
    color: white;
    animation: badgePulse 2s ease-in-out infinite alternate;
}
.status-ended {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.7);
}
@keyframes badgePulse {
    from {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }
    to {
        box-shadow: 0 0 0 6px rgba(39, 174, 96, 0);
    }
}

/* ===== #3: Ended card visual dimming ===== */
.event-card-v2.event-ended {
    opacity: 0.65;
}
.event-card-v2.event-ended:hover {
    opacity: 0.85;
}

/* ===== #7: WA Share button on card ===== */
.event-wa-share {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 5;
}
.event-wa-share svg {
    width: 18px;
    height: 18px;
    fill: white;
}
.event-card-v2:hover .event-wa-share {
    opacity: 1;
    transform: scale(1);
}

/* ===== #2 & #11: Category tag colors ===== */
.event-category-tag.cat-free {
    color: #27ae60;
}
.event-category-tag.cat-atrium {
    color: #8e44ad;
}
.event-category-tag.cat-mall {
    color: var(--secondary-color);
}
body.dark-mode .event-category-tag.cat-free {
    color: #2ecc71;
}
body.dark-mode .event-category-tag.cat-atrium {
    color: #bb8fce;
}

/* ===== #9: Date range & Location row ===== */
.event-date-v2 {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}
.event-location-v2 {
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
    font-style: italic;
}
body.dark-mode .event-date-v2 {
    color: #999;
}
body.dark-mode .event-location-v2 {
    color: #777;
}

/* ===== #4: Better empty state ===== */
.no-events-improved {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.no-events-emoji {
    font-size: 56px;
    animation: emojiFloat 3s ease-in-out infinite alternate;
}
@keyframes emojiFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}
.no-events-improved h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--primary-color);
}
.no-events-improved p {
    color: #888;
    font-size: 0.95rem;
}
.no-events-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px;
}
.no-events-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 93, 0.3);
}

/* ===== #6: Card reveal animation =====  */
.event-reveal {
    animation: cardReveal 0.45s ease both;
}
@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* load more hint */
.load-more-hint {
    margin-top: 12px;
    font-size: 12px;
    color: #aaa;
    font-style: italic;
}

/* ===== #10: SCROLL TO TOP ===== */
.event-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.25);
}
.event-scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.event-scroll-top:hover {
    box-shadow: 0 8px 20px rgba(44, 95, 93, 0.35);
    transform: translateY(-3px);
}
.event-scroll-top svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 768px) {
    .events-hero-stats {
        max-width: calc(100% - 32px);
        padding: 8px 12px;
        flex-wrap: wrap;
        gap: 4px;
    }
    .hero-stat-item {
        padding: 0 10px;
    }
    .hero-stat-number {
        font-size: 17px;
    }
    .hero-stat-label {
        font-size: 9px;
    }
    .events-filter-toolbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    .events-filter-left {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    /* Scrollable pill rows on mobile */
    .event-status-pills,
    .event-month-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        width: 100%;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .event-status-pills::-webkit-scrollbar,
    .event-month-pills::-webkit-scrollbar {
        display: none;
    }
    .event-status-pill,
    .event-month-pill {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .events-filter-right {
        width: 100%;
    }
    .events-sort-select {
        width: 100%;
        box-sizing: border-box;
    }
    .event-scroll-top {
        bottom: 90px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
    .events-section-label {
        flex-wrap: nowrap;
        gap: 8px;
        padding-right: 56px;
        overflow: hidden;
    }
    .events-section-label h2 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
    .events-count-badge {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .events-main {
        padding: 30px 16px 80px;
    }
    .events-filter-right {
        width: 100%;
    }
    .events-filter-right > div {
        flex-wrap: wrap;
        width: 100%;
    }
    .events-sort-select {
        width: 100%;
        box-sizing: border-box;
        flex: 1 1 auto;
        min-width: 0;
    }
}
@media (max-width: 480px) {
    .events-hero-stats {
        flex-wrap: wrap;
        justify-content: space-around;
        border-radius: 16px;
        max-width: 100%;
    }
    .hero-stat-divider {
        display: none;
    }
    .hero-stat-item {
        padding: 4px 8px;
    }
}

/* ========================================
   MOBILE STICKY CTA (Events)
   ======================================== */
.dir-mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(44, 95, 93, 0.12);
    box-shadow: 0 -4px 20px rgba(44, 95, 93, 0.12);
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

body.dark-mode .dir-mobile-sticky-cta {
    background: rgba(26, 31, 30, 0.97);
    border-top: 1px solid rgba(168, 197, 195, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.dir-mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 8px;
    text-decoration: none;
    color: var(--primary-color, #2c5f5d);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
}

.dir-mobile-cta-btn:hover,
.dir-mobile-cta-btn:active {
    background: rgba(44, 95, 93, 0.08);
    color: var(--primary-color, #2c5f5d);
}

body.dark-mode .dir-mobile-cta-btn {
    color: var(--accent-light, #f5f5dc);
}

.dir-mobile-cta-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color, #2c5f5d);
    fill: none;
    transition: stroke 0.2s ease;
}

body.dark-mode .dir-mobile-cta-btn svg {
    stroke: var(--accent-light, #f5f5dc);
}

@media (max-width: 768px) {
    .dir-mobile-sticky-cta {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    footer {
        padding-bottom: 80px !important;
    }

    .dark-mode-toggle {
        bottom: 85px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .event-scroll-top {
        bottom: 145px !important;
        right: 20px !important;
    }
}

/* ===== SHARE MENU (SHARED) ===== */
.share-menu {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
}

.share-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.share-menu-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 24px;
    padding: 30px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.share-menu.active .share-menu-container {
    transform: translateY(0);
}

body.dark-mode .share-menu-container {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.share-menu-header h4 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: #2c3e50;
    margin: 0;
}

body.dark-mode .share-menu-header h4 {
    color: #e0e0e0;
}

.share-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.share-menu-close:hover {
    color: #ff4757;
}

.share-menu-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .share-option {
    background: #1a1a1a;
    border-color: #3a3a3a;
}

.share-option:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color, #2c5f5d);
}

body.dark-mode .share-option:hover {
    background: #333;
    border-color: #5fcfda;
}

.share-option svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.share-option:hover svg {
    transform: scale(1.1);
}

.share-option span {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

body.dark-mode .share-option span {
    color: #b0b0b0;
}

#shareCopyLink svg { stroke: #2c3e50; }
#shareWhatsApp svg { fill: #25D366; }
#shareFacebook svg { fill: #1877F2; }
#shareTwitter svg { fill: #1DA1F2; }

body.dark-mode #shareCopyLink svg { stroke: #e0e0e0; }

@media (max-width: 480px) {
    .share-menu-container {
        padding: 20px;
    }
    .share-option {
        padding: 15px;
    }
}
