/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #0056b3; /* Bleu */
    --secondary-color: #6c757d; /* Gris */
    --white-color: #ffffff;
    --light-gray: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
}

/* Header Responsive */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    min-width: 250px;
    padding: 10px 0;
}
.logo {
    height: 60px;
    margin-right: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    top: 8px;
}

.main-nav {
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-link i {
    margin-right: 8px;
    font-size: 1rem;
}

.nav-link span {
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
}

.live-link {
    color: #ff0000 !important;
    font-weight: bold;
}

.live-link i {
    animation: pulse 2s infinite;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-link {
        padding: 15px;
        margin-bottom: 5px;
        border-radius: 5px;
    }
    
    .mobile-menu-btn.active .menu-icon {
        background: transparent;
    }
    
    .mobile-menu-btn.active .menu-icon:before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-menu-btn.active .menu-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .logo-container {
        min-width: auto;
    }
    
    .titles h1 {
        font-size: 1.2rem;
    }
    
    .slogan {
        font-size: 0.8rem;
    }
}

/* Contenu Responsive */
.container {
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .featured-shows, 
    .about-preview, 
    .newsletter {
        padding: 40px 0;
    }
    
    .shows-grid, 
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 8px 16px;
    }
    
    .live-player {
        padding-top: 75%; /* Format plus carré pour mobile */
    }
}

.language-switcher {
    background-color: var(--light-gray);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    color: var(--white-color);
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Featured Shows */
.featured-shows {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.featured-shows h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.show-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 20px;
    text-align: center;
}

.show-card:hover {
    transform: translateY(-10px);
}

.show-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* About Preview */
.about-preview {
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.about-preview .text-content {
    flex: 1;
    padding-right: 40px;
}

.about-preview h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-preview p {
    margin-bottom: 20px;
}

.video-container {
    flex: 1;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Newsletter */
.newsletter {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

#newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

#newsletter-form button {
    border-radius: 0 5px 5px 0;
    padding: 0 25px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-section.about p {
    margin-bottom: 20px;
}

.contact span {
    display: block;
    margin-bottom: 10px;
}

.contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links li {
    margin-bottom: 10px;
}

.footer-section.links a {
    color: var(--white-color);
    transition: color 0.3s ease;
}

.footer-section.links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8)), url('/1920x400.webp') no-repeat center center/cover;
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* About Page */
.about-content {
    padding: 60px 0;
}

.history, .team {
    margin-bottom: 60px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission, .vision {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.team-member p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-member {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
}

.member-photo:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-photo:after {
    opacity: 1;
}
.broadcast-info {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.broadcast-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.method:hover {
    transform: translateY(-10px);
}

.method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.method h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Shows Page */
.shows-listing {
    padding: 60px 0;
}

.shows-filter {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

#show-search {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#show-category {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--white-color);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.show-details {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.show-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.show-details h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.show-description {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.show-time, .show-host {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.show-time i, .show-host i {
    margin-right: 8px;
    color: var(--primary-color);
}

.call-to-action {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.call-to-action h2 {
    margin-bottom: 15px;
}

.call-to-action p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Schedule Page */
.schedule-content {
    padding: 60px 0;
}

.schedule-navigation {
    display: flex;
    overflow-x: auto;
    margin-bottom: 30px;
    gap: 10px;
    padding-bottom: 10px;
}

.day-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.day-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.schedule-table {
    margin-bottom: 40px;
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: var(--primary-color);
    color: var(--white-color);
}

tr:hover {
    background-color: #f5f5f5;
}

.schedule-note {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.download-schedule {
    text-align: center;
    padding: 40px 0;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.download-schedule h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.download-schedule p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* News Page */
.news-content {
    padding: 60px 0;
}

.news-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-text {
    padding: 20px;
}

.news-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.news-date {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.page-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.page-btn.next {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

.live-news {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.live-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.live-option {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.live-option h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.live-option p {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Contact Page */
.contact-content {
    padding: 60px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-map {
    height: 450px;
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.departments-contact h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.department {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.department h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.department p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.department i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-preview {
        flex-direction: column;
    }
    
    .about-preview .text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .video-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .shows-filter {
        flex-direction: column;
    }
    
    .news-categories {
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}
/* Live Player Styles */
.live-player-container {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.live-player {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.live-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 15px;
    display: flex;
    align-items: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-player:hover .player-controls {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-control {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.volume-slider {
    width: 80px;
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.volume-control:hover .volume-slider {
    opacity: 1;
}

.live-info {
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
}

.live-info h2 {
    margin-bottom: 10px;
}

/* Player Responsive */
.live-player-container {
    margin: 20px 0;
    border-radius: 0;
}

@media (min-width: 768px) {
    .live-player-container {
        border-radius: 8px;
        margin: 40px 0;
    }
}

.live-info {
    padding: 15px;
}

@media (min-width: 768px) {
    .live-info {
        padding: 20px;
    }
}

.player-controls {
    padding: 10px;
}

.control-btn {
    font-size: 1rem;
    margin-right: 10px;
}

.volume-slider {
    width: 60px;
}

@media (min-width: 768px) {
    .control-btn {
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .volume-slider {
        width: 80px;
    }
}
/* HLS.js Fallback */
.video-js {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}
.live-link {
    color: #ff0000 !important;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.live-link i {
    margin-right: 5px;
    font-size: 0.6rem;
    vertical-align: middle;
}