* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    min-height: 100vh;
    scrollbar-width: none;  
    -ms-overflow-style: none; 
}

body::-webkit-scrollbar {
    display: none; 
    width: 0;      
    height: 0;     
}

.header {
    background: linear-gradient(to right, #000000, #ff0000);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.logo {
    width: 120px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6666;
}

.btn-entrar {
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-entrar:hover {
    background-color: #333;
}

.esq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-right: 20px;
}

.titulo {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 15px;
}

.descricao-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.descricao-box {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
}

.descricao-box:hover {
    transform: translateY(-5px);
}

.descricao {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
}

.a {
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
}

.carousel {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
}


@media (min-width: 769px) {
    .carousel {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: hidden;
    }
    .card {
        flex: 0 1 18%;
    }
}


@media (max-width: 768px) {
    .carousel {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: #ff0000 transparent;
        padding-left: 20px;
        padding-right: 20px;
    }
    .carousel::-webkit-scrollbar {
        height: 8px;
    }
    .carousel::-webkit-scrollbar-track {
        background: transparent;
    }
    .carousel::-webkit-scrollbar-thumb {
        background: #ff0000;
        border-radius: 4px;
    }
    .card {
        width: 200px;
        flex: 0 0 auto;
    }
    .esq-section {
        margin-left: 0;
        margin-right: 0;
    }
}

.card {
    min-width: 250px;
    height: 180px;
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.date-card {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.date-card i {
    font-size: 1em;
    color: #fff;
}

.card-titulo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
}

.card-esq {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slots {
    font-size: 14px;
    color: #ccc;
}

.format {
    font-size: 14px;
    color: #999;
}

.preco {
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
}

.nav-greeting {
    font-size: 16px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link, .nav-greeting, .btn-login {
        font-size: 18px;
        width: 100%;
        text-align: left;
    }

    .btn-login {
        display: block;
        width: 100%;
        text-align: center;
    }

    .user-menu {
        width: 100%;
    }

    .menu-dialog,
    .profile-dialog {
        width: 200px;
        top: 50px;
        right: 10px;
    }

    .card {
        min-width: 200px;
        height: 160px;
    }

    .titulo {
        font-size: 24px;
    }

    .card-titulo {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .card-info {
        height: 90px;
    }

    .preco {
        font-size: 16px;
    }

    .header-container {
        justify-content: center;
        position: relative;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 100px;
        max-height: 60px;
        transform: scale(1.3);
    }
}

@media screen and (max-width: 480px) {
    .card {
        min-width: 100%;
    }

    .carousel {
        flex-direction: column;
        gap: 15px;
        overflow-x: hidden;
    }

    .titulo {
        font-size: 20px;
    }

    .descricao, .a {
        font-size: 14px;
    }

    .card-titulo {
        font-size: 16px;
    }

    .slots, .format {
        font-size: 12px;
    }

    .preco {
        font-size: 14px;
    }

    .logo {
        width: 80px;
        max-height: 50px;
        transform: scale(1.9);
    }
}

.auth-body {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    margin: auto;
}

.auth-card {
    background-color: #2d2d2d;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
}

.auth-logo {
    width: 100px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 28px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 20px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
    transition: border 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border: 2px solid #ff0000;
}

.auth-btn {
    background: linear-gradient(to right, #ff0000, #cc0000);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-btn:hover {
    background: linear-gradient(to right, #cc0000, #ff0000);
}

.auth-link {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

.auth-link a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
}

.auth-link a:hover {
    text-decoration: underline;
}

.auth-error {
    color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

.auth-success {
    color: #00cc00;
    background-color: rgba(0, 204, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

@media screen and (max-width: 480px) {
    .auth-card {
        padding: 20px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-logo {
        width: 80px;
    }

    .form-group input {
        padding: 10px;
        font-size: 14px;
    }

    .auth-btn {
        padding: 10px;
        font-size: 14px;
    }
}

.admin-container {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 20px;
}

.admin-title {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
    text-align: center;
    margin-bottom: 30px;
}

.admin-section {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.admin-table th {
    background-color: #1a1a1a;
    font-weight: bold;
}

.admin-table tr:hover {
    background-color: #333;
}

.admin-btn {
    background: linear-gradient(to right, #ff0000, #cc0000);
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.admin-btn:hover {
    background: linear-gradient(to right, #cc0000, #ff0000);
}

.admin-placeholder {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 15px;
}

.disabled {
    background: #666;
    cursor: not-allowed;
}

.admin-container {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 20px;
}

.admin-title {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-section {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #ff0000;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 5px;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
}

.admin-table th {
    background: linear-gradient(to right, #ff0000, #cc0000);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.admin-table td {
    border-bottom: 1px solid #333;
}

.admin-table tr:hover {
    background-color: #252525;
    transition: background-color 0.3s ease;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.admin {
    background-color: #ff0000;
    color: #fff;
}

.status-badge.user {
    background-color: #666;
    color: #fff;
}

.admin-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.admin-btn.promote {
    background: linear-gradient(to right, #00cc00, #009900);
}

.admin-btn.remove {
    background: linear-gradient(to right, #ff4444, #cc3333);
}

.admin-btn:hover {
    transform: scale(1.05);
}

.admin-btn.promote:hover {
    background: linear-gradient(to right, #009900, #00cc00);
}

.admin-btn.remove:hover {
    background: linear-gradient(to right, #cc3333, #ff4444);
}

.admin-placeholder {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 15px;
}

.disabled {
    background: #666;
    cursor: not-allowed;
}

.toast-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, #ff0000, #cc0000);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-weight: bold;
    z-index: 2000;
    animation: fadeInOut 3s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -60%); }
    10% { opacity: 1; transform: translate(-50%, -50%); }
    90% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, -60%); }
}

@media screen and (max-width: 768px) {
    .admin-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px;
        font-size: 14px;
    }

    .admin-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .admin-table-wrapper {
        overflow-x: auto;
    }

    .admin-table th,
    .admin-table td {
        padding: 10px;
        font-size: 12px;
    }

    .admin-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 18px;
    }

    .admin-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .toast-notification {
        width: 90%;
        text-align: center;
        font-size: 14px;
    }
}

.search-form {
    margin-bottom: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: border 0.3s ease;
}

.search-input:focus {
    outline: none;
    border: 2px solid #ff0000;
}

.search-btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    padding: 10px;
    font-size: 18px;
    color: #ff0000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #cc0000;
}

.btn-login {
    background: linear-gradient(to right, #ff0000, #cc0000);
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-login:hover {
    background: linear-gradient(to right, #cc0000, #ff0000);
    transform: scale(1.05);
}

.btn-logout {
    background: linear-gradient(to right, #ff4444, #cc3333);
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-logout:hover {
    background: linear-gradient(to right, #cc3333, #ff4444);
    transform: scale(1.05);
}

.user-menu {
    position: relative;
    display: inline-block;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ff0000;
    transition: transform 0.2s ease;
}

.user-avatar:hover {
    transform: scale(1.1);
}

.menu-dialog {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 10px;
    width: 200px;
    z-index: 1000;
    border: 1px solid #ff0000;
}

.menu-dialog.active {
    display: block;
}

.menu-item {
    padding: 10px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-item:hover {
    background-color: #333;
}

.menu-item.disabled {
    color: #ffffff;
    cursor: not-allowed;
}

.menu-item.disabled span {
    font-size: 12px;
    color: #cacaca;
}

.profile-btn {
    background: linear-gradient(to right, #ff0000, #cc0000);
    border-radius: 5px;
}

.profile-btn:hover {
    background: linear-gradient(to right, #cc0000, #ff0000);
}

.profile-dialog {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 250px;
    z-index: 1000;
    border: 1px solid #ff0000;
}

.profile-dialog.active {
    display: block;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: block;
    border: 3px solid #ff0000;
}

.profile-info {
    text-align: center;
    margin-bottom: 15px;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    display: block;
}

.profile-id {
    font-size: 14px;
    color: #ccc;
    display: block;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-input {
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
    transition: border 0.3s ease;
}

.profile-input:focus {
    outline: none;
    border: 2px solid #ff0000;
}

.profile-save-btn {
    background: linear-gradient(to right, #00cc00, #009900);
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.profile-save-btn:hover {
    background: linear-gradient(to right, #009900, #00cc00);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .menu-dialog,
    .profile-dialog {
        width: 180px;
        top: 60px;
    }
}

@media screen and (max-width: 480px) {
    .user-avatar {
        width: 35px;
        height: 35px;
    }

    .menu-dialog,
    .profile-dialog {
        width: 160px;
        top: 50px;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
    }

    .profile-name {
        font-size: 16px;
    }

    .profile-id {
        font-size: 12px;
    }
}

.profile-logout-btn {
    display: block;
    margin-top: 10px;
    background: linear-gradient(to right, #ff4444, #cc3333);
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.profile-logout-btn:hover {
    background: linear-gradient(to right, #cc3333, #ff4444);
    transform: scale(1.05);
}

.profile-admin-btn {
    display: block;
    margin-top: 10px;
    background: linear-gradient(to right, #ff0055, #ff0000);
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.profile-admin-btn:hover {
    background: linear-gradient(to right, #ff0055, #ff0000);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .admin-container {
        padding: 15px;
    }

    .admin-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 700px;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px;
        font-size: 14px;
    }

    .admin-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .search-container {
        max-width: 100%;
    }

    .header-container {
        justify-content: center;
    }

    .logo {
        width: 100px;
        max-height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link, .btn-entrar {
        font-size: 18px;
        width: 100%;
        text-align: left;
    }

    .btn-entrar {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .admin-container {
        padding: 10px;
    }

    .admin-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 18px;
    }

    .admin-table th,
    .admin-table td {
        padding: 10px;
        font-size: 12px;
    }

    .admin-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .toast-notification {
        width: 90%;
        text-align: center;
        font-size: 14px;
    }

    .logo {
        width: 80px;
        max-height: 50px;
    }
}

.profile-btn {
    background: linear-gradient(to right, #ff0000, #cc0000);
    border-radius: 5px;
}

.profile-btn:hover {
    background: linear-gradient(to right, #cc0000, #ff0000);
}

@keyframes subtleMove {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.05) translate(5px, -5px);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.banner-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    animation: shine 4s infinite linear;
    z-index: 3;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.banner-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mode-links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.mode-link {
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mode-link:hover {
    transform: scale(1.05);
}

.mode-image {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    border-radius: 10px;
    border: none;
    margin-bottom: 10px;
    background: none;
}

.mode-label {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff0000, #ff3333);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mode-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transition: left 0.5s ease;
}

.mode-label:hover {
    background: linear-gradient(135deg, #cc0000, #ff0000);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.mode-label:hover::before {
    left: 100%;
}

@media screen and (min-width: 769px) {

    .mode-link {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-image {
        max-height: 250px;
        object-fit: contain;
    }

    .mode-image {
        max-width: 100px;
        max-height: 100px;
    }

    .mode-label {
        font-size: 18px;
        padding: 10px 20px;
    }
}


@media screen and (max-width: 768px) {

    .mode-link {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mode-image {
        max-width: 80px;
        max-height: 80px;
    }

    .mode-label {
        font-size: 16px;
        padding: 8px 16px;
    }
}


@media screen and (max-width: 480px) {

    .mode-link {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mode-image {
        max-width: 70px;
        max-height: 70px;
    }

    .mode-label {
        font-size: 14px;
        padding: 6px 12px;
    }
}

.campeonato-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}

.campeonato-card:hover {
    transform: scale(1.05);
}

.campeonato-card h3 {
    margin: 0;
    font-size: 1.5em;
}

.campeonato-card p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #bbb;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading-content {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff4444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}