:root {
    --bg-black: #000000;
    --nav-bg: #1c1c1c;
    --accent: #fccb05;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --grey-bar: #333333;
    --card-blue: #151a42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    padding-bottom: 90px;
}

/* HEADER */
.meus-eventos-header {
    background-color: var(--bg-black);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.2);
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-grey);
    cursor: pointer;
    position: relative;
}

.tab.active {
    color: var(--accent);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    width: 60%;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px 2px 0 0;
}

.header-title-section {
    padding: 20px;
}

.header-title-section h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.header-title-section p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-white);
    opacity: 0.9;
}

/* MONTH HEADER */
.month-header {
    background-color: var(--grey-bar);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    text-transform: lowercase;
}

.month-header .year {
    font-size: 20px;
}

/* EVENT CARD */
.events-list {
    padding-bottom: 20px;
}

.event-card-premium {
    display: block;
    margin: 15px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.1);
}

.card-image-area {
    background-color: var(--card-blue);
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image-area img {
    width: 200px;
    height: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.card-info-area {
    background-color: #000;
    padding: 15px;
}

.event-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.event-datetime {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-white);
}

.card-footer-area {
    background-color: var(--grey-bar);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.venue-logo {
    width: 36px;
    height: 36px;
    background-color: #0047ff; /* Blue circle like in image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.venue-logo img {
    width: 24px;
    height: auto;
}

.venue-name {
    font-size: 14px;
    font-weight: 700;
}

.venue-city {
    font-size: 13px;
    color: #fff;
    opacity: 0.8;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 calc(25px + env(safe-area-inset-bottom)) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #888;
    flex: 1;
}

.nav-item svg {
    width: 24px;
    height: 24px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 600;
}

/* ACTIVE STATE - ENTIRELY YELLOW */
.nav-item.active {
    color: var(--accent) !important;
}

.nav-item.active svg {
    stroke: var(--accent);
    fill: var(--accent); /* If using fill icons */
}

/* Specifically for the ticket icon which uses fill in the mockup */
.nav-item.active svg path {
    fill: var(--accent);
}

@media (min-width: 768px) {
    .events-list, .meus-eventos-header, .month-header {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .bottom-nav {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px 20px 0 0;
    }
}
