/* =====================================================
   ROTA DE ENCONTRO - CSS COMPLETO
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --black: #0D0D0D;
    --dark-1: #121212;
    --dark-2: #1A1A1A;
    --dark-3: #252525;
    --dark-4: #333333;
    --gray: #999999;
    --gray-light: #AAAAAA;
    --white: #F2F2F2;
    --red: #F20505;
    --red-dark: #590202;
    --red-light: #FF3333;
    --orange: #F27405;
    --yellow: #F2BB13;
    --green: #10B981;
    --whatsapp: #25D366;
    --facebook: #1877F2;
    --instagram: #E1306C;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

.bg-pattern {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(89, 2, 2, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(242, 5, 5, 0.15) 0%, transparent 40%),
        var(--black);
}

a { color: var(--red); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { color: var(--gray); margin-bottom: 0.8rem; }

.text-white { color: var(--white) !important; }
.text-accent { color: var(--red) !important; }
.text-muted { color: var(--gray) !important; }
.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-custom {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--dark-4);
    padding: 0.8rem 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.navbar-custom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i { color: var(--red); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
}

.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav {
    display: flex;
    gap: 0.3rem;
}

.main-nav .nav-link {
    color: var(--white) !important;
    padding: 0.5rem 0.8rem !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--red) !important;
}

.menu-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--white);
    border: 1px solid var(--dark-4);
    transition: all 0.3s;
}

.btn-action:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-action.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: none;
}

.btn-action.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
}

@media (max-width: 991px) {
    .menu-toggle { display: block; }
    .menu-wrapper {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--dark-4);
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    .menu-wrapper.show {
        visibility: visible;
        opacity: 1;
    }
    .main-nav { flex-direction: column; width: 100%; }
    .menu-actions { flex-direction: column; width: 100%; }
}

/* =====================================================
   BUTTONS - SEM EFEITO 3D
   ===================================================== */
.btn-primary-custom,
.btn-primary-custom:visited {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red));
    color: white;
    text-decoration: none;
}

.btn-secondary-custom,
.btn-secondary-custom:visited {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background: var(--red);
    color: white;
    text-decoration: none;
}

.btn-outline-custom,
.btn-outline-custom:visited {
    background: transparent;
    border: 1px solid var(--dark-4);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    border-color: var(--red);
    color: var(--red);
    text-decoration: none;
}

.btn-light {
    background: white;
    color: var(--red);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-light:hover {
    background: #f0f0f0;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-control-custom {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--red);
}

.form-control-custom::placeholder { color: var(--gray); }

.form-label-custom {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--red-dark), var(--red), var(--orange));
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4.1rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons.justify-content-center {
    justify-content: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 550px;
}

/* =====================================================
   SEARCH BOX
   ===================================================== */
.search-container {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.search-form { width: 100%; }

.search-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-field {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.search-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-field .form-control-custom {
    padding-left: 2.5rem;
}

.search-btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .search-row { flex-direction: column; }
    .search-field { width: 100%; }
    .search-btn { width: 100%; }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section-padding { padding: 4rem 0; }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* =====================================================
   EVENT CARDS
   ===================================================== */
.event-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
    height: 100%;
}

.event-card:hover {
    border-color: var(--red);
}

.event-card-image {
    position: relative;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-content {
    padding: 1rem;
}

.event-date {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--red);
    color: white;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

.event-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-top: 2px;
}

.badge-category {
    display: inline-flex;
    align-items: center;
    background: rgba(242, 5, 5, 0.15);
    color: var(--red);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0.6rem 0;
}

.event-title a { color: var(--white); }
.event-title a:hover { color: var(--red); }

.event-location {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .events-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   UPCOMING LIST
   ===================================================== */
.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upcoming-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 8px;
    transition: border-color 0.3s;
}

.upcoming-item:hover {
    border-color: var(--red);
}

.upcoming-item .date-box {
    background: var(--red);
    color: white;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    min-width: 45px;
    text-align: center;
}

.upcoming-item .date-box .day {
    font-size: 1.1rem;
    font-weight: 700;
}

.upcoming-item .date-box .month {
    font-size: 0.65rem;
    text-transform: uppercase;
}

.upcoming-item .info .title {
    font-weight: 600;
    color: var(--white);
}

.upcoming-item .info .location {
    font-size: 0.8rem;
    color: var(--gray);
}

/* =====================================================
   CTA BOX
   ===================================================== */
.cta-box {
    background: linear-gradient(135deg, var(--red), var(--orange));
    height: 100%;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.cta-box i {
    font-size: 5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-box h2 { color: white; margin-bottom: 0.5rem; }
.cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

/* =====================================================
   PARTNERS
   ===================================================== */
.partners-section {
    background: var(--dark-2);
    padding: 3rem 0;
    border-top: 1px solid var(--dark-4);
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partner-item {
    background: var(--dark-3);
    border-radius: 8px;
    padding: 1rem;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat { text-align: center; }
.stat h3 { font-size: 2.5rem; }
.stat p { color: var(--gray); font-size: 0.9rem; }

.about-image {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    height: 400px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image i {
    font-size: 8rem;
    color: white;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.faq-question {
    padding: 1rem 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question span i {
    color: var(--red);
    width: 20px;
}

.faq-question i {
    transition: all 0.3s;
    color: var(--gray);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0.5rem 1.5rem 1.2rem 1.5rem !important;
}

.faq-answer p {
    padding: 0.8rem 1rem 0.5rem 1rem !important;
    margin: 0 !important;
    color: var(--gray);
    line-height: 1.8;
}

/* =====================================================
   FOOTER - Bootstrap grid nativo
   ===================================================== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--dark-4);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand i { color: var(--red); }

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red);
    text-decoration: none;
}

.footer-links li i {
    color: var(--red);
    width: 18px;
    margin-right: 6px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-3);
    border-radius: 6px;
    color: var(--white);
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--red);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--dark-4);
    padding-top: 1.2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
}

/* =====================================================
   EVENT DETAIL PAGE
   ===================================================== */
.event-hero {
    height: 350px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

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

.event-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(transparent, var(--black));
}

.event-detail-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 12px;
    padding: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.event-detail-title {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.meta-item i {
    color: var(--red);
    width: 18px;
}

.organizer-box {
    background: var(--dark-3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.organizer-box strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.countdown-box {
    background: var(--dark-3);
    border-radius: 10px;
    padding: 1.2rem;
    margin: 1.5rem 0;
}

.countdown-title {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item { text-align: center; min-width: 65px; }

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red);
    background: var(--dark-2);
    border-radius: 6px;
    padding: 0.4rem;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.share-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-4);
}

.share-section h5 { margin-bottom: 0.8rem; }

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: filter 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn.whatsapp { background: var(--whatsapp); color: white; }
.share-btn.facebook { background: var(--facebook); color: white; }
.share-btn:hover { filter: brightness(1.1); }

.location-card, .contact-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.location-card h5, .contact-card h5 { margin-bottom: 1rem; }

.map-box {
    background: var(--dark-3);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0.8rem;
}

.whatsapp-btn {
    display: block;
    background: var(--green);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #0ea472;
    color: white;
}

.text-small { font-size: 0.85rem; color: var(--gray); }

/* =====================================================
   AUTH PAGES
   ===================================================== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 14px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
}

.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo h1 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.auth-logo i { color: var(--red); }

/* =====================================================
   DASHBOARD / ADMIN
   ===================================================== */
.admin-navbar {
    background: var(--dark-2);
    border-bottom: 1px solid var(--dark-4);
    padding: 0.8rem 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}

.admin-navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-brand i { color: var(--red); }
.admin-actions { display: flex; align-items: center; gap: 1rem; }
.user-name { color: var(--gray); font-size: 0.9rem; }

.admin-container {
    display: flex;
    margin-top: 60px;
    min-height: calc(100vh - 60px);
    position: relative;
}

.admin-sidebar {
    width: 250px;
    background: var(--dark-2);
    border-right: 1px solid var(--dark-4);
    padding: 1.5rem 0;
    flex-shrink: 0;
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 10;
}

.admin-menu { list-style: none; padding: 0; margin: 0; }

.admin-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.5rem;
    color: var(--gray);
    transition: all 0.3s;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.admin-menu .menu-item:hover,
.admin-menu .menu-item.active {
    background: var(--dark-3);
    color: var(--white);
    border-left-color: var(--red);
    text-decoration: none;
}

.admin-menu .menu-item i { width: 20px; }

.admin-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.admin-main h1 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.row-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.stat-box i {
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.stat-box h3 { font-size: 2rem; margin-bottom: 0.3rem; }
.stat-box p { color: var(--gray); font-size: 0.85rem; margin: 0; }
.stat-box.warning h3 { color: var(--yellow); }
.stat-box.success h3 { color: var(--green); }
.stat-box.danger h3 { color: var(--red); }

.row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-box {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.action-box i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.action-box h4 { margin-bottom: 0.5rem; }
.action-box p { color: var(--gray); margin-bottom: 1rem; }

.table-box, .form-box {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 10px;
    padding: 1.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--dark-4);
    vertical-align: middle;
}

.admin-table th {
    background: var(--dark-3);
    color: var(--white);
    font-weight: 600;
}

.admin-table tr:hover td {
    background: rgba(242, 5, 5, 0.05);
}

.admin-table td .btn-sm {
    margin: 0.15rem;
}

.partner-box {
    background: var(--dark-3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.partner-box img {
    max-height: 50px;
    margin-bottom: 0.5rem;
}

.partner-box h5 { font-size: 0.9rem; }

.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-box select.form-control-custom { appearance: auto; }

.form-box .row { margin: 0 -0.75rem; }
.form-box .row .col-md-6 { padding: 0 0.75rem; }

.empty-state {
    text-align: center;
    padding: 3rem;
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Admin Buttons - SEM 3D */
.btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-sm.btn-success { background: var(--green); color: white; }
.btn-sm.btn-success:hover { background: #0ea472; color: white; text-decoration: none; }

.btn-sm.btn-danger { background: var(--red); color: white; }
.btn-sm.btn-danger:hover { background: var(--red-light); color: white; text-decoration: none; }

.btn-sm.btn-warning { background: var(--yellow); color: black; }
.btn-sm.btn-warning:hover { background: #d4a511; }

.btn-sm.btn-info { background: #3b82f6; color: white; }
.btn-sm.btn-info:hover { background: #2563eb; color: white; text-decoration: none; }

/* Badges */
.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success { background: var(--green) !important; }
.badge-warning { background: var(--yellow) !important; color: black !important; }
.badge-danger { background: var(--red) !important; }

/* Featured star */
.featured-star { color: var(--yellow); cursor: pointer; font-size: 1.1rem; }
.featured-star.inactive { color: var(--gray); }
.featured-star:hover { text-decoration: none; }

.btn-action-group { display: flex; flex-wrap: wrap; gap: 0.3rem; align-items: center; }

/* Upload */
.upload-area {
    border: 2px dashed var(--dark-4);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--dark-3);
}

.upload-area:hover { border-color: var(--red); }
.upload-area.dragover { border-color: var(--red); background: rgba(242,5,5,0.05); }
.upload-preview { max-width: 100%; max-height: 200px; border-radius: 8px; margin-top: 1rem; }

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid var(--dark-4);
    color: var(--white);
    transition: all 0.3s;
}

.page-btn:hover { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--red); border-color: var(--red); }

/* Filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--dark-4);
    color: var(--gray);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: white; }

/* Create event form */
.label-custom {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.image-upload-box {
    background: var(--dark-3);
    border: 2px dashed var(--dark-4);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.image-upload-box:hover { border-color: var(--red); }

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-danger {
    background: var(--dark-2);
    border: 1px solid var(--red);
    color: var(--red);
}

.alert-success {
    background: var(--dark-2);
    border: 1px solid var(--green);
    color: var(--green);
}

.alert-info {
    background: var(--dark-3);
    border: 1px solid var(--red);
    padding: 1rem;
    border-radius: 8px;
    color: var(--gray);
    margin-top: 1rem;
}

/* Utilities */
.w-100 { width: 100%; }
.flex-grow-1 { flex-grow: 1; }
.text-center { text-align: center; }
.position-relative { position: relative; }
.form-check { display: flex; align-items: center; gap: 0.5rem; }
.form-check-input { margin: 0; }
.form-check-label { color: var(--gray); font-size: 0.9rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.py-5 { padding-top: 2rem; padding-bottom: 2rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.d-none { display: none; }
.d-block { display: block; }
.fw-bold { font-weight: 700; }

@media (min-width: 991px) {
    .d-lg-flex { display: flex; }
}

/* Responsive */
@media (max-width: 991px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-section { min-height: 55vh; }
    .row-stats { grid-template-columns: repeat(2, 1fr); }
    .row-grid { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-section { min-height: 45vh; }
    .row-stats { grid-template-columns: 1fr; }
}
