/* Mobile App Style */
:root {
    --primary-color: #e63946;
    --secondary-color: #f1faee;
    --dark-color: #1d3557;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #777777;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --nav-height: 60px;
}

/* Base Styles */
body.mobile-app-style {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    padding-bottom: var(--nav-height);
}

/* App Header */
.app-header {
    background-color: var(--dark-color);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-logo img {
    height: 30px;
}

.app-logo h1 {
    font-size: 1.2rem;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Main Content */
.app-main {
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: white;
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: url('../images/ml-hero.png') no-repeat;
    background-size: contain;
    opacity: 0.2;
}

.banner-content h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.banner-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 25px;
}

.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 768px) {
    .grid-2col {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    color: white;
}

.card-icon.blue { background-color: #4285f4; }
.card-icon.green { background-color: #34a853; }
.card-icon.orange { background-color: #fbbc05; }
.card-icon.purple { background-color: #9b59b6; }
.card-icon.red { background-color: #e74c3c; }
.card-icon.teal { background-color: #1abc9c; }
.card-icon.pink { background-color: #e91e63; }
.card-icon.yellow { background-color: #f1c40f; }

.action-card h3 {
    font-size: 1rem;
    margin: 0;
}

/* Updates Section */
.updates-section {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}

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

.section-header h2 {
    font-size: 1.2rem;
    margin: 0;
}

.see-all {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.update-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.update-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    height: fit-content;
}

.update-content {
    flex: 1;
}

.update-content h3 {
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.update-content p {
    font-size: 0.9rem;
    margin: 0 0 5px 0;
    color: var(--text-light);
}

.update-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 5px 0;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.nav-item.active {
    color: var(--primary-color);
}

/* Side Navigation */
.side-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.side-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.side-nav.open {
    left: 0;
}

.side-nav-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--dark-color);
    color: white;
    position: relative;
}

.side-nav-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.side-nav-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.close-side-nav {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.side-nav-links li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.side-nav-links li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.side-nav-links li a:hover, 
.side-nav-links li a.active {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

/* Banner Slider */
.banner-slider {
    margin: 0 -15px 20px;
    position: relative;
}

.slider-item {
    position: relative;
    height: 180px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .slider-item {
        height: 250px;
    }
}

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

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 15px;
    color: white;
}

.slider-caption h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.slider-caption p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Slick Dots Customization */
.slick-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    text-indent: -9999px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: #efefef;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin: 0 15px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.countdown-header {
    margin-bottom: 15px;
}

.countdown-header h2 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-header h2 i {
    margin-right: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

@media (min-width: 768px) {
    .countdown-item {
        min-width: 80px;
    }
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .countdown-item span:first-child {
        font-size: 2.5rem;
    }
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-register {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* App Section */
.app-section {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-color);
}

.section-header h2 {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.section-header h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Back Button */
.back-btn {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Rules List */
.rules-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rule-item {
    display: flex;
    gap: 12px;
}

.rule-number {
    background-color: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rule-content h3 {
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.rule-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}
.rule-content ul {
    padding-left: 20px;
}

.rule-content li {
    margin-bottom: 10px;
}

.rule-content li:last-child {
    margin-bottom: 0;
}

/* Prize List */
.prize-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    background-color: var(--gray-color);
}

.prize-item.champion {
    background-color: rgba(230, 57, 70, 0.1);
    border-left: 4px solid var(--primary-color);
}

.prize-rank {
    background-color: var(--dark-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.prize-content h3 {
    font-size: 1rem;
    margin: 0 0 3px 0;
}

.prize-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

/* Form Styles */
.app-form {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--card-shadow);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-color);
}

.form-header h2 {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.form-header h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.step-indicator {
    background-color: var(--dark-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.player-form {
    background-color: var(--gray-color);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.player-form h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.player-form h3 i {
    margin-right: 8px;
    color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.summary-card {
    background-color: var(--gray-color);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.summary-card h3 i {
    margin-right: 8px;
    color: var(--primary-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.summary-item span:first-child {
    font-weight: 500;
}

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

.btn-prev, .btn-next, .btn-submit {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-prev {
    background-color: var(--gray-color);
    color: var(--text-color);
}

.btn-next, .btn-submit {
    background-color: var(--primary-color);
    color: white;
}

/* Tournament Bracket */
.tournament-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 15px;
    gap: 5px;
}

.tournament-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background-color: var(--gray-color);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.bracket-container {
    margin-bottom: 25px;
}

.bracket-stage {
    display: none;
}

.bracket-stage.active {
    display: block;
}

.match-card {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--card-shadow);
}

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

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

.match-status {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 10px;
}

.match-status.completed {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--gray-color);
}

.team.winner {
    background-color: rgba(230, 57, 70, 0.1);
    border-left: 4px solid var(--primary-color);
}

.team-name {
    font-weight: 500;
}

.team-score {
    font-weight: bold;
    color: var(--primary-color);
}

.match-details {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.match-details i {
    margin-right: 5px;
}

/* Standings */
.standings-section {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--card-shadow);
}

.group-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    margin: 15px 0;
    gap: 5px;
}

.group-tabs::-webkit-scrollbar {
    display: none;
}

.group-tab {
    background-color: var(--gray-color);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
}

.group-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.group-standings {
    display: none;
}

.group-standings.active {
    display: block;
}

.standing-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: var(--gray-color);
    border-radius: 8px;
    margin-bottom: 8px;
}

.standing-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.standing-row:last-child {
    border-bottom: none;
}

.position {
    font-weight: 600;
    width: 20px;
    text-align: center;
}

.team-name {
    flex-grow: 1;
    padding: 0 15px;
}

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

/* Team List */
.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 85%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
}

.search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.team-list-container {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}

.list-header {
    display: flex;
    background-color: var(--dark-color);
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.header-item {
    padding: 0 5px;
}

.team-list {
    max-height: 400px;
    overflow-y: auto;
}

.team-item {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.2s;
}

.team-item:hover {
    background-color: var(--gray-color);
}

.team-data {
    padding: 0 5px;
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.pending {
    background-color: #fff8e1;
    color: #ff8f00;
}

.status-badge.verified {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-badge.rejected {
    background-color: #ffebee;
    color: #c62828;
}

.no-results {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.faq-question {
    width: 100%;
    padding: 15px;
    background-color: white;
    border: none;
    text-align: left;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background-color: white;
}

.faq-answer.show {
    padding: 15px;
    max-height: 500px;
}

/* Contact Support */
.contact-support {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: var(--card-shadow);
}

.contact-support h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.contact-support h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    gap: 10px;
}

.contact-item i {
    font-size: 1.2rem;
}

.contact-item.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    border-left: 4px solid #25D366;
}

.contact-item.email {
    background-color: rgba(66, 133, 244, 0.1);
    border-left: 4px solid #4285f4;
}

/* Live Streaming */
.stream-container {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.stream-placeholder {
    padding: 30px;
    color: var(--text-light);
}

.stream-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stream-placeholder h3 {
    margin: 0 0 10px 0;
}

.live-chat {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.live-chat h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.live-chat h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.chat-container {
    margin-top: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background-color: var(--gray-color);
}

.chat-input {
    display: flex;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
}

.chat-input button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .app-main {
        padding: 20px;
    }
    
    .grid-2col {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .banner-slider {
        margin: 0 0 20px;
    }
    
    .countdown-section {
        margin: 0 0 20px;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

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

.slide-in {
    animation: slideIn 0.3s ease-out;
}

/* Global link styles */
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

/* Specific link styles */
.see-all,
.nav-item,
.side-nav-links li a,
.btn-register,
.team-item,
.contact-item {
    text-decoration: none;
}

.see-all:hover,
.nav-item:hover,
.side-nav-links li a:hover,
.btn-register:hover,
.team-item:hover,
.contact-item:hover {
    color: var(--dark-color);
}

/* Ensure bottom nav items don't change color on hover */
.bottom-nav .nav-item {
    color: var(--text-light);
}

.bottom-nav .nav-item:hover,
.bottom-nav .nav-item.active {
    color: var(--primary-color);
}

/* Ensure side nav links don't change color on hover */
.side-nav-links li a:hover, 
.side-nav-links li a.active {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

/* Adjust tab button styles */
.tab-btn {
    text-decoration: none;
    color: var(--text-color);
}

.tab-btn:hover,
.tab-btn.active {
    color: white;
}

/* Adjust group tab styles */
.group-tab {
    text-decoration: none;
    color: var(--text-color);
}

.group-tab:hover,
.group-tab.active {
    color: white;
}