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

:root {
    --primary-color: #e50914;
    --primary-hover: #f40612;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-red: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 70%, #0a0a0a 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    padding-bottom: 70px;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 70%, transparent 100%);
    padding: 16px 20px;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #e50914 0%, #f40612 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 4px rgba(229, 9, 20, 0.3));
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Main Content */
.main-content {
    margin-top: 70px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.hero-section:hover .hero-backdrop {
    transform: scale(1);
}

.hero-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 10px rgba(0,0,0,0.6);
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    flex-wrap: wrap;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.hero-rating {
    color: #ffd700;
}

.hero-overview {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    color: rgba(255, 255, 255, 0.95);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(229, 9, 20, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn svg {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content-sections {
    padding: 0 24px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Categories Bar */
.categories-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 24px 0;
    margin-bottom: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.categories-bar::-webkit-scrollbar {
    display: none;
}

.category-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-width: fit-content;
    flex-shrink: 0;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

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

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.category-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

/* Media Rows */
.media-row {
    margin-bottom: 48px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    padding: 0 4px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.media-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
    scroll-behavior: smooth;
}

.media-scroll::-webkit-scrollbar {
    height: 6px;
}

.media-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.media-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.media-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* Media Card */
.media-card {
    flex: 0 0 auto;
    width: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.media-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.media-card-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(128,128,128,0.3) 0%, rgba(128,128,128,0.5) 100%);
    box-shadow: var(--shadow-lg);
    margin-bottom: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.media-card:hover .media-card-poster {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.media-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.media-card:hover .media-card-title {
    color: var(--primary-color);
}

/* Bottom Navigation (Mobile) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.nav-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

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

.nav-tab.active svg {
    filter: drop-shadow(0 2px 8px rgba(229, 9, 20, 0.4));
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 40px;
}

.search-header {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.search-input {
    flex: 1;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 24px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.close-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    width: 56px;
    height: 56px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
}

/* Detail View */
.detail-view {
    position: relative;
    min-height: 100vh;
}

.back-btn {
    position: fixed;
    top: 90px;
    left: 24px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.detail-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: blur(20px) brightness(0.3);
    transform: scale(1.1);
}

.detail-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 50%, #0a0a0a 100%);
}

.detail-content {
    position: relative;
    z-index: 1;
    padding: 120px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.detail-poster {
    width: 320px;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.detail-info {
    flex: 1;
}

.detail-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 16px;
    flex-wrap: wrap;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.detail-genres {
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 16px;
}

.detail-overview {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    color: var(--text-secondary);
}

.detail-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.detail-section {
    margin-bottom: 60px;
}

/* Season/Episode Selector */
.season-episode-section {
    margin-bottom: 60px;
}

.selector-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 0 4px;
}

.season-selector,
.episode-selector {
    margin-bottom: 24px;
}

.seasons-scroll,
.episodes-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.seasons-scroll::-webkit-scrollbar,
.episodes-scroll::-webkit-scrollbar {
    height: 6px;
}

.seasons-scroll::-webkit-scrollbar-track,
.episodes-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.seasons-scroll::-webkit-scrollbar-thumb,
.episodes-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.season-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.season-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.season-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.episode-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 130px;
    text-align: left;
}

.episode-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.episode-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.episode-number {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.episode-name {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Cast */
.cast-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.cast-item {
    flex: 0 0 auto;
    width: 160px;
    text-align: center;
    transition: transform 0.3s ease;
}

.cast-item:hover {
    transform: translateY(-5px);
}

.cast-photo {
    width: 160px;
    height: 240px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.cast-item:hover .cast-photo {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3);
}

.cast-name {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.cast-character {
    font-size: 13px;
    color: var(--text-muted);
}

/* Player Modal */
.player-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 3000;
    display: none;
}

.player-modal.active {
    display: block;
}

.player-close {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3001;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.player-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.player-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    /* Prevent iframe from triggering popups */
    pointer-events: auto;
}

/* Category View */
.category-view {
    position: relative;
    min-height: 100vh;
}

.category-content {
    padding: 100px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

/* My List View */
.my-list-view {
    padding: 100px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 48px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.my-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 32px;
}

.empty-state {
    padding: 100px 40px;
    text-align: center;
    color: var(--text-muted);
}

.empty-state h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.error-message {
    color: var(--primary-color);
    padding: 24px;
    text-align: center;
    font-weight: 500;
}

/* Error View */
.error-view {
    position: relative;
    min-height: 100vh;
    padding: 120px 40px 60px;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.error-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loading-spinner {
    text-align: center;
    color: var(--text-primary);
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-overview {
        font-size: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .media-card {
        width: 140px;
    }
    
    .navbar {
        display: none;
    }
    
    .detail-header {
        flex-direction: column;
    }
    
    .detail-poster {
        width: 240px;
        height: 360px;
        align-self: center;
    }
    
    .detail-title {
        font-size: 36px;
    }
    
    .my-list-grid,
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .category-content,
    .my-list-view,
    .detail-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .page-title {
        font-size: 32px;
    }
}

@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}
