* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #fff;
    overflow-x: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: calc(100vh - 56px);
    max-width: 100%;
    box-sizing: border-box;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #0f0f0f;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #303030;
}

.header-left {
    display: flex;
    align-items: center;
}

.hamburger-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    margin-right: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-icon {
    width: 20px;
    height: 14px;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after,
.hamburger-icon .line {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    position: absolute;
}

.hamburger-icon::before {
    top: 0;
}

.hamburger-icon .line {
    top: 6px;
}

.hamburger-icon::after {
    bottom: 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    color: white;
}

.logo span {
    color: red;
    margin-right: 4px;
}

.logo .premium {
    font-size: 10px;
    background-color: red;
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    margin-left: 4px;
}

.header-center {
    display: flex;
    align-items: center;
    flex: 0 1 728px;
    margin: 0 40px;
}

.search-form {
    display: flex;
    flex: 1;
}

.bi-search {
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.search-input {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #303030;
    background-color: #121212;
    color: white;
    border-radius: 24px 0 0 24px;
    font-size: 16px;
    outline: none;
}

.search-btn {
    width: 64px;
    height: 40px;
    border: 1px solid #303030;
    background-color: #303030;
    border-radius: 0 24px 24px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.search-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.search-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 6px;
    background-color: white;
    transform: rotate(-45deg);
    bottom: 0;
    right: 5px;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1c63dc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-left: 16px;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background-color: #0f0f0f;
    overflow-y: auto;
    transition: left 0.3s ease, width 0.2s ease;
    border-right: 1px solid #303030;
}

.sidebar-collapsed {
    width: 72px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #feaf50;
}

.sidebar-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #feaf50;
}

.sidebar-icon {
    width: 24px;
    height: 24px;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-collapsed .sidebar-icon {
    margin-right: 0;
}

.sidebar-text {
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-badge {
    background: linear-gradient(135deg, #feaf50 0%, #ffc107 100%);
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(254, 175, 80, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(254, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(254, 175, 80, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(254, 175, 80, 0.3);
    }
}

.sidebar-collapsed .notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    margin: 0;
}

.sidebar-collapsed .sidebar-text {
    display: none;
}

.sidebar-category {
    margin-top: 12px;
    padding: 8px 24px;
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
}

.sidebar-collapsed .sidebar-category {
    display: none;
}

.sidebar-divider {
    height: 1px;
    background-color: #303030;
    margin: 12px 0;
}

/* FULLPASS Status */
.sidebar-category.fullpass-category {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
    line-height: 14px;
}

.sidebar-category.fullpass-category i {
    color: #feaf50;
    margin-right: 8px;
    font-size: 16px;
}

.sidebar-status-fullpass {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    margin-top: 0px;
    margin-bottom: 8px;
}

.sidebar-status-fullpass .fullpass-icon {
    margin-right: 12px;
}

.sidebar-status-fullpass .fullpass-icon img {
    width: 14px;
    height: auto;
    vertical-align: middle;
}

.sidebar-status-fullpass .fullpass-info {
    display: flex;
    flex-direction: column;
}

.sidebar-status-fullpass .fullpass-label {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 2px;
}

.sidebar-status-fullpass .fullpass-status {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}


/* END FULLPASS Status */

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 24px;
    background-color: #0f0f0f;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Filter Tags */
.filter-tags-container {
    position: sticky;
    top: 0;
    background-color: #0f0f0f;
    padding: 12px 0;
    margin: 0 -24px 16px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.filter-tags-scroll {
    display: flex;
    overflow-x: auto;
    padding: 0 24px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
}

.filter-tags-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.filter-tag {
    flex: 0 0 auto;
    margin-right: 12px;
    padding: 8px 12px;
    background-color: #303030;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.filter-tag a {
    text-decoration: none;
    color: inherit;
}

.filter-tag:hover {
    background-color: #404040;
}

.filter-tag.active {
    background-color: white;
    color: black;
}

.filter-fade-right {
    position: absolute;
    top: 12px;
    right: 0;
    height: 36px;
    width: 50px;
    background: linear-gradient(to left, #0f0f0f, transparent);
    pointer-events: none;
}

.content-section {
    margin-bottom: 40px;
    width: 100%;
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}
.section-title-with-subtitle {
    font-size: 20px;
    font-weight: 500;
}
.section-subtitle {
    font-size: 13px;
    color:lightgray;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.video-grid, 
.live-events-container,
.live-events-scroll {
    width: 100%;
    max-width: 100%;
}

.video-card {
    cursor: pointer;
}

.thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #303030;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 12px;
}

.video-info {
    display: flex;
}

.channel-avatar {
    margin-right: 8px;
    position: relative;
    min-width: 36px;
    height: 36px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #303030;
    position: absolute;
    border: 2px solid #0f0f0f;
    overflow: hidden;
}

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

.avatar:nth-child(1) {
    z-index: 2;
    left: 0;
}

.avatar:nth-child(2) {
    z-index: 1;
    left: 18px;
}

.video-details {
    flex: 1;
}

.video-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.channel-name {
    font-size: 12px;
    color: #aaa;
    margin-top: 3px;
    margin-bottom: 0px;
}

.channel-instructor-link {
    color: #feaf50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.channel-instructor-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

.video-meta {
    font-size: 12px;
    color: #aaa;
}

/* Live Events Section (Similar to Shorts) */
.live-events-section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-link {
    color: #3ea6ff;
    font-size: 14px;
    text-decoration: none;
}

.section-link:hover {
    text-decoration: underline;
}

.live-events-container {
    position: relative;
    display: flex;
    align-items: center;
}

.live-events-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 8px 0;
    gap: 16px;
    width: 100%;
    padding-right: 20px; /* Espaço para o botão de rolagem direito */
}

.live-events-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.live-event-card {
    flex: 0 0 auto;
    width: 180px;
    cursor: pointer;
}

.event-thumbnail {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #303030;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.event-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.event-badge.preparing {
    background-color: #303030;
    color: white;
}

.event-badge.open {
    background-color: #FFC107;
    color: black;
}

.event-badge.subscribed {
    background-color: #5DCB65;
    color: black;
}

.event-badge.today {
    background-color: #cc0000;
    color: white;
}

.event-badge.live {
    background-color: #cc0000;
    color: white;
}

.event-badge.finished {
    background-color: #303030;
    color: white;
}

.event-badge.ranking {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #000;
    color: #ffd700; /* Dourado */
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; /* 20% maior que a proposta anterior */
    height: 48px; /* 20% maior que a proposta anterior */
    z-index: 10;
    border: 2px solid #ffd700; /* Borda dourada */
    transform: rotate(-5deg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.event-badge.ranking::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0) 70%);
    z-index: -1;
}

.event-date {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.event-viewers {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.event-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    font-size: 12px;
    color: #aaa;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(33, 33, 33, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.scroll-arrow:hover {
    background-color: rgba(53, 53, 53, 0.9);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

/* Estilos para o menu de perfil */
.topbar-option-menu-container a {
    color: white;
    font-size: 24px;
    margin-right: 10px;
    text-decoration: none;
}

.topbar-option-menu-container span {
    font-size:16px;
    font-weight:normal;
    color:lightcoral;
    font-family:Arial, Helvetica, sans-serif;
    margin-left: 5px;
}

.profile-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image-wrapper {
    cursor: pointer;
}

.user-profile {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.profile-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 180px;
    z-index: 1000;
    display: none;
}

.profile-dropdown-menu.show {
    display: block;
}

.profile-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 14px;
}

.profile-dropdown-item:hover {
    background-color: #f5f5f5;
}

.profile-dropdown-item i {
    margin-right: 8px;
}

.profile-dropdown-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 5px 0;
}

.mobile-search-button {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-search-button i {
    font-size: 18px;
}


.event-meta {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
}

.meta-speakers {
    display: flex;
    margin-bottom: 4px;
    flex-wrap: wrap;
    float: left;
}

.meta-speaker-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 4px;
    border: 1px solid #303030;
    flex-shrink: 0;
}

/* Para quando há dois palestrantes, aplica sobreposição parcial */
.meta-speaker-avatar:nth-child(2) {
    margin-left: -12px;
}

.meta-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meta-text {
    font-size: 12px;
    color: #aaa;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 32px; /* Limita a altura do texto */
    margin-top: 4px;
}

/* Manter a data centralizada na thumbnail */
.event-date {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.live-event-card {
    flex: 0 0 auto;
    width: 180px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    max-height: 440px; /* Limite de altura máxima para o card */
    overflow: hidden;
}

.event-thumbnail {
    position: relative;
    width: 100%;
    height: 240px; /* Reduzido de 320px */
    background-color: #303030;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

/* Estilos adicionais para a seção de missão */
.sidebar-mission {
    padding: 0 16px 16px;
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
}

.sidebar-mission p {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: #feaf50;
    color: #000;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 16px;
}

/* Estilos para a barra de progresso */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.video-progress-bar {
    height: 100%;
    background-color: #feaf50;  /* Usando a cor laranja do seu tema */
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 0 5px rgba(254, 175, 80, 0.5);
}

/* Efeito hover para destacar a barra de progresso */
.thumbnail:hover .video-progress-container,
.event-thumbnail:hover .video-progress-container {
    height: 5px;
}

/* Adaptar a posição para ambos os estilos de cards */
.thumbnail {
    overflow: visible; /* Para garantir que a barra fique visível mesmo que esteja em overflow */
}

.event-thumbnail {
    overflow: visible;
}

.thumbnail .video-progress-container,
.event-thumbnail .video-progress-container {
    overflow: hidden;
    border-radius: 0 0 8px 8px; /* Mantém os cantos arredondados apenas embaixo */
}

/* Estilo alternativo: Barra de progresso com marcador */
.video-progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 3px;
    height: 7px;
    background-color: #fff;
    border-radius: 1px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    display: none; /* Desativado por padrão, ative se quiser este estilo */
}

/* Para vídeos completos (100%), podemos usar uma cor diferente */
.video-progress-bar[style="width: 100%;"] {
    background-color: #4CAF50; /* Verde para vídeos completamente assistidos */
}

/* Vídeos com mais de 90% de progresso */
.video-progress-bar[style^="width: 9"],
.video-progress-bar[style="width: 100%;"] {
    background-color: #4CAF50;
}

/* Animação sutil quando o mouse passa por cima */
.thumbnail:hover .video-progress-bar,
.event-thumbnail:hover .video-progress-bar {
    filter: brightness(1.2);
}

/* Estilo para conteúdo bloqueado */
.locked-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.locked-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(254, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #feaf50;
}

.locked-icon i {
    color: #feaf50;
    font-size: 24px;
}

.event-thumbnail:hover .locked-content-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Error messages */
.messages-container {
    width: 100%;
    margin: 20px auto;
    margin-bottom: 0px;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
    margin-left: 120px; /* Offset para compensar a sidebar */
}

.alert {
    margin-bottom: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 12px 15px;
    position: relative;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
}

/* Cores para os diferentes tipos de alertas */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Botão de fechar */
.btn-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.btn-close:hover {
    opacity: 1;
}

/* Banner do Jogo */
.mission-banner {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 16px 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mission-banner:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #feaf50;
}

.mission-banner-content {
    display: flex;
    align-items: center;
    padding: 12px 16px;
}

.mission-banner-thumbnail {
    width: 130px;
    height: 98px;
    margin-right: 16px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mission-banner-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-banner-info {
    flex: 1;
}

.mission-banner-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.mission-banner-title-highlight {
    color: #feaf50;
    font-weight: 600;
}

.mission-banner-stats {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.mission-banner-progress {
    margin: 8px 0;
    width: 100%;
}

.mission-progress-bar {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.mission-progress-fill {
    height: 100%;
    background-color: #feaf50;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mission-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 8px;
}

.mission-stat-value {
    font-size: 16px;
    font-weight: 600;
}

.mission-stat-label {
    font-size: 12px;
    color: #aaa;
}

.mission-stat-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

.mission-banner-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: 16px;
    color: #aaa;
    transition: all 0.2s ease;
    border-radius: 50%;
    flex-shrink: 0;
    text-decoration: none;
}

.mission-banner-action:hover {
    color: #feaf50;
    background-color: rgba(254, 175, 80, 0.1);
}

.mission-banner-action i {
    font-size: 24px;
    margin-bottom: 2px;
}

.mission-banner-action-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Banner de Anúncios */
.announce-bar {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    
}

.announce-bar:hover {
    background: linear-gradient(135deg, rgba(254, 175, 80, 0.18) 0%, rgba(255, 193, 7, 0.10) 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.announce-bar-content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.announce-bar-thumbnail {
    width: 140px;
    height: 180px; /* Altura fixa para a imagem */
    margin-right: 24px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.announce-bar-thumbnail-wider {
    width: 180px;
    height: auto;
    margin-right: 24px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    align-self: flex-start;
}


.announce-bar-thumbnail img,
.announce-bar-thumbnail-wider img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: 100%;
}

.announce-bar-info {
    flex: 1;
}

.announce-bar-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.announce-bar-title-highlight {
    color: #feaf50;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.announce-bar-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #feaf50;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.announce-bar:hover .announce-bar-title-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.announce-bar-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
    opacity: 0.9;
}

.announce-bar-description {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 12px;
}

.announce-bar-description::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #feaf50;
    font-size: 16px;
}

.announce-bar-cta {
    margin-top: 16px;
    position: relative;
}

.announce-bar-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #feaf50 0%, #ffc107 100%);
    color: #000;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(254, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.announce-bar-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.announce-bar-button:hover {
    background: linear-gradient(135deg, #ffc107 0%, #feaf50 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(254, 175, 80, 0.4);
    color: #000;
}

.announce-bar-button:hover::before {
    left: 100%;
}

.announce-bar-list {
    list-style: none;
    padding: 20px 0 20px 0;
    margin: 0 0 10px 0;
}

.announce-bar-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1;
    font-weight: 400;
}

.announce-bar-bullet-icon {
    font-size: 1em;
    color: #feaf50;
    margin-right: 10px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Rotative Banner Component */
.rotative-banner-wrapper {
    width: 100%;
    margin: 20px 0;
    position: relative;
}

.rotative-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(254, 175, 80, 0.18);
}

.rotative-banner:hover {
    transform: translateY(-3px);
    
}

.rotative-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.rotative-banner-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.rotative-banner-slide.transitioning-out {
    z-index: 1;
}

.rotative-banner-content {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    position: relative;
    z-index: 1;
    min-height: 100%;
    box-sizing: border-box;
}

.rotative-banner-thumbnail {
    width: 180px;
    height: auto;
    margin-right: 24px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.rotative-banner-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: 100%;
    transition: all 0.3s ease;
}

.rotative-banner-info {
    flex: 1;
    padding-right: 40px;
}

.rotative-banner-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.rotative-banner-highlight {
    color: #feaf50;
    font-weight: 800;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #feaf50 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotative-banner-highlight-message {
    color: #4CAF50;
    font-weight: 500;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotative-banner-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
    opacity: 0.9;
    line-height: 1.3;
}

.rotative-banner-list {
    list-style: none;
    padding: 8px 0 12px 0;
    margin: 0 0 8px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.rotative-banner-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ccc;
    line-height: 1.3;
    font-weight: 400;
    transition: all 0.2s ease;
}

.rotative-banner-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

.rotative-banner-bullet-icon {
    font-size: 14px;
    color: #feaf50;
    margin-right: 8px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
    transition: all 0.2s ease;
}

.rotative-banner-list li:hover .rotative-banner-bullet-icon {
    transform: scale(1.1);
    color: #ffc107;
}

.rotative-banner-cta {
    margin-top: 16px;
    position: relative;
}

.rotative-banner-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #feaf50 0%, #ffc107 100%);
    color: #000;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(254, 175, 80, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.rotative-banner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.rotative-banner-button:hover {
    background: linear-gradient(135deg, #ffc107 0%, #feaf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 175, 80, 0.5);
    color: #000;
}

.rotative-banner-button:hover::before {
    left: 100%;
}

/* Navigation Arrows */
.rotative-banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(254, 175, 80, 0.3);
    color: #feaf50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rotative-banner-nav:hover {
    background: rgba(254, 175, 80, 0.2);
    border-color: #feaf50;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(254, 175, 80, 0.3);
}

.rotative-banner-nav-prev {
    left: 15px;
}

.rotative-banner-nav-next {
    right: 15px;
}

/* Dots Indicator */
.rotative-banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.rotative-banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(254, 175, 80, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.rotative-banner-dot:hover {
    border-color: #feaf50;
    transform: scale(1.2);
}

.rotative-banner-dot.active {
    background: #feaf50;
    border-color: #feaf50;
    box-shadow: 0 0 10px rgba(254, 175, 80, 0.5);
}

.rotative-banner-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(254, 175, 80, 0.3);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design for Rotative Banner */
@media (max-width: 768px) {
    .rotative-banner {
        min-height: 450px;
    }
    
    .rotative-banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
    
    .rotative-banner-thumbnail {
        width: 100%;
        height: 160px;
        max-height: 160px;
        margin-right: 0;
        margin-bottom: 20px;
        align-self: auto;
    }
    
    .rotative-banner-info {
        padding-right: 0;
    }
    
    .rotative-banner-title {
        font-size: 20px;
    }
    
    .rotative-banner-subtitle {
        font-size: 16px;
    }
    
    .rotative-banner-list {
        gap: 6px 12px;
    }
    
    .rotative-banner-list li {
        font-size: 13px;
    }
    
    .rotative-banner-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .rotative-banner-nav-prev {
        left: 10px;
    }
    
    .rotative-banner-nav-next {
        right: 10px;
    }
    
    .rotative-banner-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .rotative-banner-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 640px) {
    .rotative-banner {
        min-height: 550px;
    }
    
    .rotative-banner-title {
        font-size: 18px;
    }
    
    .rotative-banner-subtitle {
        font-size: 14px;
    }
    
    .rotative-banner-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .rotative-banner-list li {
        font-size: 12px;
    }
    
    .rotative-banner-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .rotative-banner-nav {
        display: none;
    }
}

/* --- MEDIA QUERIES --- */

@media (max-width: 1200px) {
    .header-center {
        margin: 0 20px;
    }
}

@media (max-width: 900px) and (orientation: portrait) {
    .announce-bar-thumbnail img {
        object-position: 50% 35%;
    }
}

@media (max-width: 768px) {
    .mission-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .mission-banner-thumbnail {
        margin-bottom: 8px;
        display: none;
    }
    .mission-banner-progress {
        width: 100%;
        margin: 8px 0;
    }
    .mission-banner-stats {
        margin-top: 8px;
    }
    .mission-banner-action {
        display: none;
    }
    .mission-banner-title {
        font-size: 12px;
    }
    .header-center {
        display: none !important;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        padding: 10px;
        background-color: #0f0f0f;
        z-index: 200;
        border-bottom: 1px solid #303030;
    }
    .header-center.active {
        display: block !important;
    }
    .search-form {
        width: 100%;
        display: flex !important;
    }
    .search-input {
        display: block !important;
        width: 100% !important;
        position: static !important;
    }
    .sidebar {
        position: fixed;
        top: 56px;
        left: -240px;
        height: calc(100vh - 56px);
        z-index: 200;
        transition: left 0.3s ease;
        box-shadow: none;
        width: 240px;
    }
    .header-center {
        margin: 0 5px;
        max-width: 50%;
    }
    .sidebar.sidebar-mobile-open {
        left: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    .sidebar.sidebar-mobile-open .sidebar-text {
        display: block;
    }
    .sidebar.sidebar-mobile-open .sidebar-category {
        display: block;
    }
    .sidebar.sidebar-mobile-open .sidebar-icon {
        margin-right: 24px;
    }
    .sidebar:not(.sidebar-mobile-open) .sidebar-text {
        display: none;
    }
    .sidebar:not(.sidebar-mobile-open) .sidebar-icon {
        margin-right: 0;
    }
    .sidebar:not(.sidebar-mobile-open) .sidebar-category {
        display: none;
    }
    .sidebar:not(.sidebar-mobile-open) .sidebar-category.fullpass-category {
        display: flex;
        justify-content: center;
        padding: 8px 0;
    }
    .sidebar:not(.sidebar-mobile-open) .sidebar-category.fullpass-category i {
        margin-right: 0;
    }
    .sidebar:not(.sidebar-mobile-open) .sidebar-category.fullpass-category span {
        display: none;
    }
    .sidebar.sidebar-collapsed {
        width: 240px;
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 199;
    }
    .sidebar-overlay.active {
        display: block;
    }
    .sidebar-text {
        display: none;
    }
    .sidebar-icon {
        margin-right: 0;
    }
    .sidebar-category {
        display: none;
    }
    .sidebar-category.fullpass-category {
        display: flex;
        justify-content: center;
        padding: 8px 0;
    }
    .sidebar-category.fullpass-category i {
        margin-right: 0;
    }
    .sidebar-category.fullpass-category span {
        display: none;
    }
    .sidebar-status-fullpass {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }
    .sidebar-status-fullpass .fullpass-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .sidebar-status-fullpass .fullpass-info {
        align-items: center;
        text-align: center;
    }
    .header-center {
        margin: 0 10px;
    }
    .sidebar-collapsed .sidebar-mission {
        display: none;
    }
    .sidebar-collapsed .sidebar-social {
        flex-wrap: wrap;
        justify-content: center;
    }
    .search-form {
        position: relative;
    }
    .search-input {
        display: none;
        position: absolute;
        right: 40px;
        width: 400px;
    }
    .search-input.active {
        display: block;
    }
    .announce-bar-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
    .announce-bar-thumbnail {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 20px;
        align-self: auto;
    }
    .announce-bar-title {
        font-size: 18px;
    }
    .announce-bar-subtitle {
        font-size: 15px;
    }
    .announce-bar-description {
        font-size: 14px;
    }
    .announce-bar-cta {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .announce-bar-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

@media (max-width: 640px) {
    header {
        padding: 0 10px;
    }
    .logo img {
        max-height: 28px;
    }
    .header-center {
        margin: 0 5px;
        max-width: 50%;
    }
    .search-input {
        width: 100%;
        font-size: 14px;
        padding: 0 8px;
    }
    .search-btn {
        width: 40px;
    }
    .header-left {
        flex: 0 0 auto;
    }
    .header-right {
        flex: 0 0 auto;
    }
    .hamburger-btn {
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
    .header-center {
        order: 3;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-center {
        order: 3;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .messages-container {
        margin-left: 0; /* Remove offset no mobile */
        margin: 10px auto;
        padding: 0 10px;
    }
    .alert {
        padding: 8px 35px 8px 10px;
        font-size: 13px;
    }
}

/* Event Banner Styles */
.event-banner {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 16px 0;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.event-banner:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #feaf50;
    text-decoration: none;
}

.event-banner-content {
    display: flex;
    align-items: center;
    padding: 12px 16px;
}

.event-banner-date {
    width: 60px;
    height: 60px;
    background-color: rgba(254, 175, 80, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(254, 175, 80, 0.3);
}

.event-date-day {
    font-size: 18px;
    font-weight: 700;
    color: #feaf50;
    line-height: 1;
}

.event-date-month {
    font-size: 10px;
    font-weight: 500;
    color: #feaf50;
    text-transform: uppercase;
    margin-top: 2px;
}

.event-banner-info {
    flex: 1;
}

.event-banner-title {
    margin-bottom: 8px;
}

.event-banner-title-main {
    font-size: 14px;
    font-weight: 600;
    color: #feaf50;
    display: block;
}

.event-banner-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 2px;
}

.event-banner-details {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.event-detail i {
    font-size: 12px;
    color: #feaf50;
}

.event-access-badge {
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-access-badge.public {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.event-access-badge.restricted {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.event-banner-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(254, 175, 80, 0.1);
    color: #feaf50;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.event-banner:hover .event-banner-action {
    background-color: rgba(254, 175, 80, 0.2);
}

.event-banner-action i {
    font-size: 20px;
    margin-bottom: 2px;
}

.event-banner-action-label {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Responsive styles for events */
@media (max-width: 768px) {
    .event-banner-content {
        padding: 10px 12px;
    }
    
    .event-banner-date {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .event-date-day {
        font-size: 16px;
    }
    
    .event-date-month {
        font-size: 9px;
    }
    
    .event-banner-title-main {
        font-size: 13px;
    }
    
    .event-banner-subtitle {
        font-size: 11px;
    }
    
    .event-banner-details {
        gap: 12px;
    }
    
    .event-detail {
        font-size: 11px;
    }
    
    .event-access-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .event-banner-action {
        width: 50px;
        height: 50px;
    }
    
    .event-banner-action i {
        font-size: 18px;
    }
    
    .event-banner-action-label {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .event-banner-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .event-banner-action {
        display: none;
    }
}