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

/* Typography - Luxury Brand Style */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    --primary-font: 'Archivo', sans-serif;
    --secondary-font: 'Cormorant Garamond', serif;
    --white: #ffffff;
    --black: #000000;
    --gray: #888888;
    --light-gray: rgba(255, 255, 255, 0.1);
}

body {
    font-family: var(--primary-font);
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    cursor: default;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 9px 60px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Left - Logo */
.header-left {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo-image {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Header Center - Navigation */
.header-center {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    opacity: 0.8;
}

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

.nav-link.active {
    opacity: 1;
}

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

/* Header Right - Auth */
.header-right {
    display: flex;
    justify-content: flex-end;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-connect-wallet {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-connect-wallet:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-connect-wallet svg {
    width: 16px;
    height: 16px;
}

.btn-login {
    padding: 10px 24px;
    background: var(--white);
    border: none;
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* User Info when logged in */
.header-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-user-avatar:hover {
    transform: scale(1.1);
}

.header-user-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
}

.header-user-rank {
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-user-rank.common {
    background: #CCCCCC;
    color: var(--black);
}

.header-user-rank.amethyst {
    background: #9966CC;
    color: var(--white);
}

.header-user-rank.gold {
    background: #FFD700;
    color: var(--black);
}

.header-user-rank.black {
    background: #1A1A1A;
    color: var(--white);
    border: 1px solid var(--white);
}

.header-user-rank.diamond {
    background: linear-gradient(135deg, #B9F2FF 0%, #66D9EF 100%);
    color: var(--black);
}

.btn-logout {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    bottom: 120px;
    left: 60px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Video Slide */
.slide-video {
    background-image: none !important;
}

.slide-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.slide-video::before {
    z-index: 1;
}

.slide-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    letter-spacing: 12px;
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--primary-font);
}

.slide-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

/* Controls */
.controls {
    position: fixed;
    bottom: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.1);
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
}

.separator {
    opacity: 0.5;
}

/* Dots Navigation */
.dots {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.3);
}

.dot.active {
    background: var(--white);
    width: 12px;
    height: 12px;
}

/* Social Media */
.social {
    position: fixed;
    bottom: 60px;
    left: 60px;
    display: flex;
    gap: 30px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    color: var(--white);
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: var(--white);
    opacity: 0.3;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 7px 40px;
    }

    .logo-image {
        height: 85px;
    }

    .header-center {
        gap: 30px;
    }

    .nav-link {
        font-size: 12px;
    }

    .btn-connect-wallet,
    .btn-login {
        padding: 9px 18px;
        font-size: 11px;
    }

    .slide-content {
        left: 40px;
        bottom: 100px;
    }

    .controls {
        bottom: 40px;
        right: 40px;
        gap: 20px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    .dots {
        right: 40px;
    }

    .social {
        bottom: 40px;
        left: 40px;
        gap: 20px;
    }

    .scroll-indicator {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 7px 30px;
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .logo-image {
        height: 75px;
    }

    .header-center {
        display: none; /* Hide nav on mobile, could add hamburger menu later */
    }

    .header-right {
        justify-content: flex-end;
    }

    .btn-connect-wallet {
        display: none; /* Hide wallet on small screens */
    }

    .btn-login {
        padding: 8px 16px;
        font-size: 11px;
    }

    .slide-content {
        left: 30px;
        bottom: 140px;
    }

    .slide-title {
        letter-spacing: 6px;
    }

    .slide-subtitle {
        letter-spacing: 3px;
    }

    .controls {
        bottom: 30px;
        right: 30px;
        gap: 15px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .pagination {
        font-size: 16px;
    }

    .dots {
        display: none;
    }

    .social {
        bottom: 80px;
        left: 30px;
        gap: 15px;
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 7px 20px;
    }

    .logo-image {
        height: 62px;
    }

    .btn-login {
        padding: 7px 14px;
        font-size: 10px;
    }

    .slide-content {
        left: 20px;
        bottom: 120px;
    }

    .controls {
        bottom: 20px;
        right: 20px;
    }

    .social {
        bottom: 60px;
        left: 20px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--white);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Page Sections */
.page-section {
    min-height: 100vh;
    padding-top: 100px;
}

/* Contact Page */
.contact-section {
    min-height: 100vh;
    background: var(--black);
    padding: 140px 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 60px;
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive - Contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 120px 30px 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        padding: 30px 25px;
    }
}

/* Tour Dates / Calendar Section */
.tour-section {
    min-height: 100vh;
    background: var(--black);
    padding: 120px 60px 80px;
}

.tour-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.tour-header {
    text-align: center;
    margin-bottom: 60px;
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.section-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    letter-spacing: 12px;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--gray);
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

/* Calendar */
.calendar-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-month {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white);
}

.calendar-nav {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gray);
    padding: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.calendar-day.other-month {
    color: rgba(255, 255, 255, 0.2);
}

.calendar-day.today {
    border-color: var(--white);
}

.calendar-day.event {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    border-color: var(--white);
}

.calendar-day.event::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--black);
    border-radius: 50%;
}

.calendar-day.event:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
}

/* Event Details */
.event-details {
    width: 100%;
    height: 100%;
}

.event-placeholder {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 30px;
    text-align: center;
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.event-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.event-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.event-item.clickable {
    cursor: pointer;
}

.event-item.clickable:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.event-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 240px;
    max-height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    overflow: hidden;
}

.event-content-wrapper {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-cta {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.event-date {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.event-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.3;
}

.event-location {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 6px;
    font-family: var(--secondary-font);
}

.event-description {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-time {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--white);
    opacity: 0.6;
    margin-bottom: 8px;
}

/* Responsive - Calendar */
@media (max-width: 1200px) {
    .tour-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .tour-section {
        padding: 100px 40px 60px;
    }

    .tour-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-details {
        order: 2;
        position: relative;
        top: 0;
    }

    .calendar-wrapper {
        order: 1;
        padding: 25px;
    }

    .calendar-month {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .tour-section {
        padding: 100px 30px 50px;
    }

    .tour-header {
        margin-bottom: 40px;
    }

    .tour-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-details {
        order: 2;
        position: relative;
        top: 0;
        min-height: 300px;
    }

    .event-placeholder {
        min-height: 300px;
        padding: 60px 20px;
    }

    .calendar-wrapper {
        order: 1;
        padding: 20px;
    }

    .calendar-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .calendar-month {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .event-banner {
        min-height: 180px;
        max-height: 240px;
        aspect-ratio: 16 / 9;
    }

    .calendar-nav {
        width: 40px;
        height: 40px;
    }

    .calendar-weekdays span {
        font-size: 10px;
        padding: 8px 5px;
    }

    .calendar-days {
        gap: 8px;
    }

    .calendar-day {
        font-size: 14px;
    }

    .event-item {
        padding: 20px;
    }

    .event-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tour-section {
        padding: 80px 20px 40px;
    }

    .calendar-wrapper {
        padding: 15px;
    }

    .calendar-month {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .calendar-nav {
        width: 35px;
        height: 35px;
    }

    .calendar-weekdays span {
        font-size: 9px;
        padding: 5px 2px;
    }

    .calendar-days {
        gap: 5px;
    }

    .calendar-day {
        font-size: 13px;
    }

    .event-item {
        padding: 15px;
    }

    .event-name {
        font-size: 18px;
    }

    .event-location {
        font-size: 14px;
    }
}

