* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --text-color: #444;
    --light-gray: #f5f7fa;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.3s;
}

body {
    background-color: var(--light-gray);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
}

header {
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), #1abc9c);
    color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 20px 15px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.action-card.icon-only {
    padding: 15px;
}

.action-card.icon-only i {
    margin-bottom: 0;
    font-size: 28px;
}

.action-card.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.action-card.map {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.action-card.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.main-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.menu-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.menu-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.card-text {
    flex: 1;
}

.card-text h3 {
    margin: 0 0 5px;
    color: #333;
    font-size: 1.1rem;
}

.card-text p {
    margin: 0;
    color: #777;
    font-size: 0.85rem;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, var(--success-color), #27ae60);
}

.menu-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.menu-card:nth-child(3) .card-icon, .menu-card:nth-child(7) .card-icon {
    background: linear-gradient(135deg, var(--warning-color), #e67e22);
}

.menu-card:nth-child(4) .card-icon, .menu-card:nth-child(8) .card-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

#agendaBtn .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

#campeonatoBtn .card-icon {
    background: linear-gradient(135deg, var(--warning-color), #e67e22);
}

.content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
    display: none;
}

.content:not(:empty) {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

select, input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

select:focus, input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
}

.btn-cancel {
    background: linear-gradient(135deg, var(--danger-color), #c0392b);
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
}

.btn-cancel:hover {
    background: linear-gradient(135deg, #c0392b, var(--danger-color));
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #27ae60);
    box-shadow: 0 3px 8px rgba(46, 204, 113, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #27ae60, var(--success-color));
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4);
}

.btn-edit {
    background: linear-gradient(135deg, var(--warning-color), #e67e22);
    box-shadow: 0 3px 8px rgba(243, 156, 18, 0.3);
}

.btn-edit:hover {
    background: linear-gradient(135deg, #e67e22, var(--warning-color));
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4);
}

.btn-edit i {
    margin-right: 5px;
}

.btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.player-item:hover {
    background-color: #f2f2f2;
    border-color: #ddd;
}

.player-item input {
    flex: 1;
    margin-right: 10px;
}

.player-item button {
    background-color: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
}

.player-item button:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}

.game-card {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    transition: all var(--transition-speed) ease;
    background-color: #fff;
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: #ddd;
}

.game-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.game-title {
    font-weight: bold;
    font-size: 1.25rem;
    color: #2c3e50;
}

.game-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.game-info {
    margin-bottom: 15px;
}

.game-info p {
    margin-bottom: 5px;
}

.game-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 15px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

h3 {
    color: #34495e;
    margin: 25px 0 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.match-item {
    padding: 12px;
    background-color: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    position: relative;
}

.match-item:hover {
    background-color: #f2f2f2;
    border-color: #ddd;
}

.match-item.completed {
    background-color: rgba(46, 204, 113, 0.05);
    border-color: rgba(46, 204, 113, 0.2);
}

.match-item.highlight-match {
    animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
    0% { background-color: #f8f9fa; }
    50% { background-color: rgba(52, 152, 219, 0.2); }
    100% { background-color: #f8f9fa; }
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.match-team {
    flex: 1;
    text-align: center;
    padding: 8px;
    color: #2c3e50;
}

.match-vs {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-weight: normal;
}

.match-score {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.score-controls-container {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.score-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.score-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.4);
}

.score-btn:disabled,
.score-btn.disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.score-input {
    width: 40px;
    height: 35px;
    font-size: 1rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 40px;
    padding: 0 5px;
}

.score-input:disabled,
.score-input.disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.score-display {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    margin: 0 5px;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.score-display.winner {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.4);
}

.score-separator {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7f8c8d;
    margin: 0 5px;
}

.btn-save {
    margin-left: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color), #27ae60);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(46, 204, 113, 0.3);
    transition: all 0.2s ease;
}

.btn-save:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4);
}

.team-score-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.team-score-input label {
    flex: 1;
    margin: 0;
}

.team-score-input input {
    width: 80px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px;
}

.ranking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 20px 0;
}

.ranking-table th, .ranking-table td {
    padding: 12px 15px;
    text-align: left;
}

.ranking-table th {
    background-color: #34495e;
    color: white;
    font-weight: 600;
}

.ranking-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.ranking-table tr:hover {
    background-color: #f2f2f2;
}

.ranking-table tr:nth-child(1) {
    background-color: #FFD700 !important;
    color: #000 !important;
}

.ranking-table tr:nth-child(1):hover {
    background-color: #FFC107 !important;
    color: #000 !important;
}

.ranking-table tr:nth-child(2) {
    background-color: #2196F3 !important;
    color: #fff !important;
}

.ranking-table tr:nth-child(2):hover {
    background-color: #1976D2 !important;
    color: #fff !important;
}

.ranking-table tr:nth-child(3) {
    background-color: #FF9800 !important;
    color: #000 !important;
}

.ranking-table tr:nth-child(3):hover {
    background-color: #F57C00 !important;
    color: #000 !important;
}

.position-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.position-icon.gold {
    color: white;
}

.position-icon.silver {
    color: #C0C0C0;
}

.position-icon.bronze {
    color: #CD7F32;
}

.position-icon.duck {
    color: #ffeb3b;
    position: relative;
}

.position-icon.duck::before {
    content: "🦆";
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.playersList {
    margin-top: 15px;
    margin-bottom: 20px;
}

.player-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.add-player-btn, .bulk-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
    flex: 1;
}

.add-player-btn:hover, .bulk-add-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
}

.bulk-add-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 3px 8px rgba(155, 89, 182, 0.3);
}

.bulk-add-btn:hover {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    box-shadow: 0 4px 10px rgba(155, 89, 182, 0.4);
}

.bulk-modal {
    max-width: 600px;
}

.add-player-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
}

.add-player-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
}

.actions-row {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.repeated-team-info {
    color: var(--danger-color);
    font-size: 0.9rem;
    font-style: italic;
    margin: 8px 0;
    padding: 5px 10px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
}

.back-btn {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 3px 8px rgba(149, 165, 166, 0.3);
}

.back-btn:hover {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(149, 165, 166, 0.4);
}

.completed-label {
    background-color: var(--success-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-title {
    font-size: 1.4rem;
    color: var(--danger-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-message {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.site-footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-speed) ease;
    z-index: 1000;
}

.pwa-install-banner.active {
    transform: translateY(0);
}

.pwa-message {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-message i {
    font-size: 1.5rem;
}

.pwa-actions {
    display: flex;
    gap: 10px;
}

.pwa-install-btn {
    background-color: linear-gradient(135deg, var(--success-color), #27ae60);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pwa-install-btn:hover {
    background-color: #27ae60;
}

.pwa-dismiss-btn {
    background-color: transparent;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

.match-number {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.banner-container {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: none;
}

#banner-placeholder {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, var(--primary-color), #1abc9c);
    display: block;
}

.social-bar {
    display: none;
}

.timeline {
    position: relative;
    margin: 20px 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.timeline-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    margin-top: 0;
    color: #2c3e50;
}

.event-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.event-details {
    padding: 10px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 5px;
    margin: 10px 0;
}

.event-toggle-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

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

.event-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.event-subscribe-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.event-subscribe-btn:hover {
    background: #128C7E;
}

.agenda-modal {
    max-width: 550px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    z-index: 1010;
}

.modal-close:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.edit-note {
    background-color: rgba(243, 156, 18, 0.1);
    border-left: 3px solid var(--warning-color);
    padding: 10px 15px;
    margin: 20px 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

#playersSection {
    display: none;
}

.ranking-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.ranking-criteria {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.ranking-info .form-group {
    margin: 15px 0;
}

.ranking-info select {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: white;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.player-name {
    cursor: pointer;
    text-decoration: underline;
    color: #2c3e50;
    transition: color 0.2s ease;
}

.player-name:hover {
    color: var(--primary-color);
}

.player-matches-modal {
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.player-matches-title {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 1.5rem;
}

.player-match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.player-match-win {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.player-match-loss {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.player-match-opponent {
    font-weight: 600;
}

.player-match-score {
    font-weight: 700;
}

.player-match-result {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.result-win {
    background-color: var(--success-color);
    color: white;
}

.result-loss {
    background-color: var(--danger-color);
    color: white;
}

.team-list {
    margin: 10px 0;
    padding-left: 20px;
}

.team-list li {
    margin-bottom: 5px;
    background-color: rgba(52, 152, 219, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
}

.weather-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    margin: 20px 0;
}

.weather-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.weather-date {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.weather-icon {
    font-size: 36px;
    margin: 10px 0;
    color: var(--warning-color);
}

.weather-temp {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.weather-desc {
    color: #7f8c8d;
    margin-bottom: 5px;
}

.weather-wind {
    font-size: 0.9rem;
    color: #95a5a6;
}

.weather-note {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 8px;
    color: #27ae60;
}

.weather-loading {
    text-align: center;
    padding: 30px;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    min-height: 100px;
    resize: vertical;
    transition: all 0.2s ease;
    font-family: inherit;
}

textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.shared-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 10px;
    vertical-align: middle;
}

#shareGameBtn {
    background: linear-gradient(135deg, #27ae60, var(--success-color));
    box-shadow: 0 3px 8px rgba(46, 204, 113, 0.3);
}

#shareGameBtn:hover {
    background: linear-gradient(135deg, var(--success-color), #27ae60);
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4);
}

#shareGameBtn i {
    margin-right: 5px;
}

.share-url-section {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.share-url-container {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.share-url-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    font-size: 0.9rem;
    color: #555;
}

.copy-url-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.copy-url-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.empty-state p {
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.status-badge.active {
    background-color: var(--primary-color);
    color: white;
}

.status-badge.complete {
    background-color: var(--success-color);
    color: white;
}

.progress-bar-container {
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.game-info-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.danger-zone {
    margin-top: 30px;
    padding: 15px;
    border: 1px dashed var(--danger-color);
    border-radius: 10px;
    background-color: rgba(231, 76, 60, 0.05);
}

.danger-zone h4 {
    color: var(--danger-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.matches-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.matches-filter {
    display: flex;
    gap: 5px;
}

.matches-filter .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
    background: #f2f2f2;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: none;
}

.btn-small:hover {
    background: #e0e0e0;
    transform: none;
    box-shadow: none;
}

.btn-small.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.winner-row {
    background-color: rgba(46, 204, 113, 0.2) !important;
    font-weight: 600;
}

.next-match-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.suggested-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 10px 0;
}

.suggested-team {
    font-weight: 600;
    font-size: 1.1rem;
    color: #34495e;
    text-align: center;
    padding: 0 15px;
}

.winner-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f39c12, #f1c40f);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.winner-trophy {
    font-size: 36px;
    margin-right: 20px;
}

.winner-info h3 {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.winner-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.match-team.winner {
    font-weight: 700;
    color: var(--success-color);
}

.final-score {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.final-score span.winner {
    color: var(--success-color);
}

.winner-celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow: hidden;
}

.winner-message {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: scaleIn 0.5s forwards;
    z-index: 1001;
}

.winner-message h2 {
    margin: 0;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.winner-message h3 {
    margin: 15px 0;
    font-size: 24px;
    color: #2c3e50;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0.8;
    transform: translateY(-100vh);
    animation: fall linear forwards;
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        rotate: 360deg;
    }
}

.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 990;
}

.help-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 995;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tutorial-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tutorial-step {
    position: absolute;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    z-index: 996;
}

.tutorial-step h3 {
    margin-top: 0;
}

.tutorial-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.toast {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: var(--success-color);
}

.toast.error {
    background-color: var(--danger-color);
}

.toast.info {
    background-color: var(--primary-color);
}

.toast.warning {
    background-color: var(--warning-color);
}

.toast i {
    margin-right: 10px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--danger-color);
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.online-badge {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--success-color);
    display: inline-block;
    margin-right: 5px;
}

.offline-badge {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--danger-color);
    display: inline-block;
    margin-right: 5px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-overlay p {
    margin-top: 20px;
    color: #333;
    font-weight: 500;
}

.swipeable-matches {
    position: relative;
    overflow: hidden;
}

.swipe-indicator {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transform: translateY(-50%);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 5;
}

.swipe-left {
    left: 10px;
}

.swipe-right {
    right: 10px;
}

.filters-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-chip {
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover, .filter-chip.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.stats-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

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

.stats-title {
    font-weight: 600;
    color: #2c3e50;
}

.stats-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.tournament-bracket {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    overflow-x: auto;
    padding-bottom: 20px;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.bracket-round-title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.bracket-match {
    margin: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}

.bracket-team {
    padding: 8px;
    margin-bottom: 5px;
    background-color: white;
    border-radius: 5px;
}

.bracket-team.winner {
    background-color: rgba(46, 204, 113, 0.2);
    font-weight: bold;
}

.search-bar {
    position: relative;
    margin-bottom: 20px;
}

.search-bar input {
    padding-left: 40px;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
}

.dark-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

.draggable-item {
    cursor: move;
    user-select: none;
}

.drag-ghost {
    opacity: 0.5;
    background-color: #f2f2f2;
}

.dropzone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.dropzone.active {
    border-color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.checkbox-icon {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkbox-icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox input:checked + .checkbox-icon i {
    display: block;
    color: white;
}

.checkbox-icon i {
    display: none;
}

.onboarding-indicator {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    transition: all 0.2s ease;
}

.indicator-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Toast animations */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.toast-enter {
    animation: toastIn 0.3s forwards;
}

.toast-exit {
    animation: toastOut 0.3s forwards;
}

/* Pulse animation for tutorial highlights */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.tutorial-highlight {
    position: relative;
    z-index: 997;
    animation: pulse 1.5s infinite;
}

/* Skeleton loading effect */
.skeleton-loader {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.team-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.team-item:hover {
    background-color: #f2f2f2;
    border-color: #ddd;
}

.team-inputs {
    display: flex;
    flex: 1;
    gap: 10px;
}

.team-inputs input {
    flex: 1;
}

.team-item button {
    background-color: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
    margin-left: 10px;
}

.team-item button:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}

.bulk-info {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin: 10px 0;
}

.non-scoring-match {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px dashed rgba(255, 193, 7, 0.5);
}

.non-scoring-label {
    background-color: #ffc107;
    color: #333;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 8px;
    font-weight: 600;
}

.non-scoring-info {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.9rem;
    border-left: 3px solid #ffc107;
}

.non-scoring-info i {
    color: #ffc107;
    margin-right: 5px;
}

.fab-menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
}

.fab-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.fab-menu-items {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--shadow-md);
}

.fab-menu-items.active {
    display: flex;
}

.fab-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.fab-item:hover {
    background-color: #f2f2f2;
}

.fab-item i {
    margin-right: 10px;
    width: 24px;
    text-align: center;
    color: var(--primary-color);
}

.reserve-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.reserve-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.reserve-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.reserve-icon i {
    font-size: 32px;
    color: white;
}

.reserve-info {
    flex: 1;
}

.reserve-info h3 {
    margin: 0 0 10px;
    color: #333;
}

.reserve-info p {
    margin: 0 0 15px;
    color: #777;
}

.btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 3px 8px rgba(243, 156, 18, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4);
}

.round-section {
    margin-bottom: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.round-title {
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.round-matches {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .match-score {
        flex-direction: row;
    }
    
    .score-input {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        min-width: 36px;
        padding: 0 2px;
    }
    
    .score-display {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .score-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .actions-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .actions-row .btn {
        width: 100%;
    }
    
    .pwa-install-banner {
        flex-direction: column;
        gap: 15px;
    }
    
    .pwa-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .menu-group {
        grid-template-columns: 1fr;
    }
    
    .help-button {
        bottom: 70px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .match-team {
        margin-bottom: 0;
        font-size: 0.9rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .match-vs {
        padding: 0 5px;
        font-size: 0.9rem;
    }
    
    .search-bar {
        margin-top: 10px;
    }

    .filters-row {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }

    .stats-body {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-inputs {
        flex-direction: column;
    }
    
    .round-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .round-section {
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .quick-actions {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .action-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px;
    }
    
    .action-card i {
        font-size: 24px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .action-card.icon-only {
        flex-direction: column;
        justify-content: center;
    }
    
    .action-card.icon-only i {
        margin-right: 0;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon i {
        font-size: 18px;
    }

    .card-text h3 {
        font-size: 1rem;
    }
    
    .score-input {
        width: 30px;
        min-width: 30px;
        font-size: 1rem;
    }
    
    .score-display {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .score-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}