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

:root {
    --primary-color: #001F3F;
    --secondary-color: #003366;
    --accent-color: #004080;
    --highlight-color: #0059B3;
    --bright-color: #0080FF;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --border-radius: 8px;
    --shadow: 0 2px 10px rgba(0, 31, 63, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 31, 63, 0.15);
    --transition: all 0.3s ease;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--light-gray);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Handmade/Sketch Style Effects */
.sketch-border {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.sketch-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--bright-color);
    border-radius: var(--border-radius);
    transform: rotate(0.5deg);
    z-index: -1;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header__link {
    color: inherit;
    text-decoration: none;
}

.header__link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__title {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--bright-color);
    border-radius: 2px;
}

/* Main Content */
.main {
    flex: 1;
    padding: 2rem 0;
}

.section {
    display: none;
    min-height: 60vh;
}

.section.active {
    display: block;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 100px;
    height: 4px;
    background: var(--bright-color);
    border-radius: 2px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 128, 255, 0.05), transparent);
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-20px); }
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.stat-card:hover {
    transform: translateY(-5px) rotate(0.5deg);
    box-shadow: var(--shadow-hover);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-color), var(--highlight-color));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.stat-card__number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--bright-color);
    margin-bottom: 0.5rem;
}

.stat-card__label {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--bright-color), var(--highlight-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3);
}

.btn:hover {
    background-color: var(--secondary-color);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 255, 0.4);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn--danger {
    background: #dc3545;
    color: var(--white);
}

.btn--danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Teams Grid */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid var(--bright-color);
}

.team-card:hover {
    transform: translateY(-5px) rotate(0.5deg);
    box-shadow: var(--shadow-hover);
}

.team-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.team-card__name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.team-card__color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: var(--shadow);
}

.team-card__players {
    margin-bottom: 1rem;
}

.team-card__players-title {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: move;
}

.player-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.player-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.player-info {
    display: flex;
    flex-direction: column;
}

.player-name {
    font-weight: 600;
    color: var(--primary-color);
}

.player-position {
    font-size: 0.9rem;
    color: var(--gray);
}

.team-card__actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Tournament Styles */
.tournaments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tournament-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.tournament-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tournament-card__info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tournament-card__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.9rem;
}

.tournament-card__teams {
    margin-bottom: 1rem;
}

.tournament-teams-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tournament-team {
    padding: 0.25rem 0.75rem;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 1px solid #dee2e6;
}

.tournament-card__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.8);
    backdrop-filter: blur(5px);
}

.modal__content {
   
    position: relative;
    z-index: 1001;
    animation: modalSlideIn 0.3s ease;
}

.modal__content--large {
    max-width: 800px;
}


.confirmation.compact {
    font-size: 0.95rem;
}

.confirmation-section {
    margin-bottom: 1rem;
}

.compact-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.confirmation-teams {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.confirmation-team {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    background: #f8f8f8;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
}

.confirmation-team__color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.modal__title {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* Form Styles */
.form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--bright-color);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Wizard Styles */
.wizard {
    padding: 1.5rem;
}

.wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--light-gray);
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.wizard-step.active {
    background: var(--bright-color);
    color: var(--white);
}

.wizard-step.completed {
    background: var(--highlight-color);
    color: var(--white);
}

.wizard-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-weight: bold;
    font-size: 0.8rem;
}

.wizard-content {
    min-height: 300px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

/* Drag and Drop Styles */
.drag-zone {
    min-height: 200px;
    border: 2px dashed #dee2e6;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
}

.drag-zone.drag-over {
    border-color: var(--bright-color);
    background: rgba(0, 128, 255, 0.05);
    color: var(--bright-color);
}

.drag-zone::before {
    content: '🏐';
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.drag-zone.drag-over::before {
    animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

/* Off-canvas Styles */
.off-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.off-canvas.active {
    display: block;
}

.off-canvas__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.8);
    backdrop-filter: blur(5px);
}

.off-canvas__content {
    position: absolute;
    z-index: 1001;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 31, 63, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.off-canvas.active .off-canvas__content {
    transform: translateX(0);
}

.off-canvas__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.off-canvas__close:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.off-canvas__nav {
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.off-canvas__link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.off-canvas__link:hover {
    background: var(--light-gray);
    border-left-color: var(--bright-color);
    transform: translateX(5px);
}

/* Scoreboard Styles */

.scoreboard-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scoreboard-tab-content.active {
    display: block;
    opacity: 1;
}

.scoreboard-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

/* ========== Card de Partida ========== */
.match-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.match-card__teams,
.match-editor__teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.match-card__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.match-team,
.set-editor__inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap; /* Permite quebra se necessário */
}

.set-editor__inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap; /* Permite quebra se necessário */
}

.set-editor__inputs input[type="number"] {
    width: 60px; /* ou 50px se quiser ainda menor */
    padding: 6px;
}

.match-team {
    font-weight: 600;
    color: var(--primary-color);
}

.match-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bright-color);
}

.match-vs {
    color: var(--gray);
    font-weight: normal;
}

.match-team__color,
.team-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.match-team__color {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    box-shadow: var(--shadow);
}

.team-statistics {
    padding: 1.5rem;
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.team-stat-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-stat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.team-stat-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: var(--shadow);
}

.team-stat-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.team-stat-item {
    display: flex;
    justify-content: space-between;
}

.team-stat-label {
    font-weight: 500;
}

.team-stat-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* ========== Modal ========== */
.modal__content {
    background: #fff;
    max-width: 600px;
    margin: 5% auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 24px;
}

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

.modal__body {
    padding: 8px 0;
}

.modal__title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ========== Editor de Partidas ========== */
.match-editor {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.match-editor__teams,
.sets-editor,
.match-editor__actions {
    padding: 8px 0;
    align-items: center;
    text-align: center;
}

.sets-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
    align-items: center;
}

.set-separator {
    font-weight: bold;
    font-size: 1.2rem;
}

.match-editor__actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* ========== Outros ========== */
.empty-state {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    padding: 3rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}

.footer__text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .modal__content {
        width: 95%;
        margin: 1rem;
    }
    
    .wizard {
    display: flex;
    flex-direction: column;
    height: 90vh; /* ajustável */
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.wizard__content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    box-sizing: border-box;
}

.wizard__actions {
    padding: 1rem;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    position: sticky;
    bottom: 0;
    z-index: 10;
}


    .wizard-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .match-card__teams {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .match-card__info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero__title {
        font-size: 1.5rem;
    }
    
    .off-canvas__content {
        width: 280px;
    }
    
    .btn {
        width: 100%;
    }
    
    .team-card__actions {
        flex-direction: column;
    }
    
    .tournament-card__actions {
        flex-direction: column;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.nav-link:focus {
    outline: 2px solid var(--bright-color);
    outline-offset: 2px;
}
