/* ============================================================================
   E-COMIC COMPLETE STYLESHEET
   style.css - Versi Final
   ============================================================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* === PROGRESS SECTION === */
.progress-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.progress-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.progress-bar-container {
    background: #e9ecef;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.progress-text {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

/* === STRIP GRID === */
.strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* === STRIP CARD === */
.strip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.strip-card:nth-child(1) { animation-delay: 0.1s; }
.strip-card:nth-child(2) { animation-delay: 0.2s; }
.strip-card:nth-child(3) { animation-delay: 0.3s; }
.strip-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.strip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* === THUMBNAIL STYLES - CRITICAL === */
.strip-thumbnail {
    width: 100%;
    height: 0;
    padding-bottom: 135%; /* Lebih panjang untuk 4:5+ ratio (disesuaikan agar tidak terpotong) */
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px dashed #dee2e6;
}

.strip-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to 'contain' agar tidak terpotong */
    border-radius: 8px;
    display: none; /* Hidden by default, shown when loaded */
}

.strip-thumbnail .thumbnail-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.strip-thumbnail .thumbnail-placeholder i {
    font-size: 5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.strip-thumbnail .thumbnail-placeholder p {
    margin: 0;
    color: #667eea;
    font-weight: 600;
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* === STRIP INFO === */
.strip-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.strip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.meta-item i {
    color: #667eea;
}

.strip-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: #f8f9ff;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.strip-stats span {
    color: #667eea;
    font-weight: 600;
    font-size: 0.85rem;
}

.strip-stats i {
    margin-right: 0.3rem;
}

.strip-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.strip-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* === FEATURES SECTION === */
.features {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    color: white;
}

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .strip-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strip-thumbnail {
        padding-bottom: 135%; /* Keep ratio on mobile */
    }

    .strip-thumbnail .thumbnail-placeholder i {
        font-size: 4rem;
    }

    .strip-thumbnail .thumbnail-placeholder p {
        font-size: 1rem;
    }

    .strip-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .strip-card {
        padding: 1.5rem;
    }

    .strip-thumbnail {
        padding-bottom: 135%; /* Keep ratio on small mobile */
    }

    .strip-thumbnail .thumbnail-placeholder i {
        font-size: 3rem;
    }

    .strip-thumbnail .thumbnail-placeholder p {
        font-size: 0.9rem;
    }

    .strip-info h3 {
        font-size: 1.3rem;
    }

    .strip-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* === COMPLETED BADGE === */
.completed-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.completed-badge i {
    margin-right: 0.3rem;
}

/* === PRINT STYLES === */
@media print {
    .hero, .footer, .features {
        display: none;
    }

    body {
        background: white;
    }

    .strip-card {
        page-break-inside: avoid;
    }
}

/* ============================================================================
   STRIP VIEWER STYLES
   ============================================================================ */

/* === HEADER === */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    opacity: 0.8;
}

.strip-title {
    font-size: 1.1rem;
    opacity: 0.9;
    flex: 1;
    text-align: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.speed-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.speed-control select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* === PROGRESS CONTAINER === */
.progress-container {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.progress-bar-container {
    background: #e9ecef;
    height: 15px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar-fill,
#strip-progress {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* === COMIC VIEWER === */
.comic-viewer {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comic-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.comic-page {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.comic-page img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.comic-page.zoomed {
    cursor: zoom-out;
}

.comic-page.zoomed img {
    transform: scale(1.5);
    cursor: zoom-out;
}

.page-info {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 2px solid #e9ecef;
}

/* === TEXT DISPLAY === */
.text-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: Black;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.text-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0.3;
}

.text-content {
    position: relative;
    z-index: 2;
}

.english-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.translation {
    font-size: 1rem;
    opacity: 0;
    font-style: italic;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    display: none;
}

.translation.show {
    opacity: 0.9;
    transform: translateY(0);
    display: block;
}

/* === CONTROLS === */
.controls {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.control-section {
    margin-bottom: 2rem;
}

.control-section:last-child {
    margin-bottom: 0;
}

.control-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-title i {
    color: #667eea;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.button-group-compact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-2px);
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover:not(:disabled) {
    background: #e0a800;
    transform: translateY(-2px);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-compact {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    min-height: 44px;
    flex: 1 1 auto;
    min-width: 90px;
}

/* === QUIZ SECTION === */
.quiz-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.quiz-section.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.quiz-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.quiz-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.quiz-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quiz-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.quiz-option.correct {
    border-color: #28a745;
    background: #d4edda;
    color: #155724;
}

.quiz-option.incorrect {
    border-color: #dc3545;
    background: #f8d7da;
    color: #721c24;
}

/* === NOTES SECTION === */
.notes-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.notes-textarea {
    width: 100%;
    min-height: 120px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.notes-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* === VOCABULARY SIDEBAR === */
.vocabulary-sidebar {
    position: fixed;
    right: -350px;
    top: 0;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 200;
    overflow-y: auto;
    padding: 2rem;
}

.vocabulary-sidebar.open {
    right: 0;
}

.vocabulary-header {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vocabulary-header i {
    cursor: pointer;
    color: #6c757d;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.vocabulary-header i:hover {
    background: #f8f9fa;
    color: #667eea;
}

.vocabulary-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.vocabulary-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vocab-word {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vocab-pronunciation {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.vocab-meaning {
    color: #495057;
    margin-bottom: 0.5rem;
}

.vocab-example {
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #dee2e6;
}

/* === RESPONSIVE FOR VIEWER === */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
        flex-wrap: wrap;
    }

    .strip-title {
        font-size: 0.9rem;
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }

    .comic-page {
        height: 400px;
    }

    .button-group {
        justify-content: center;
    }

    .btn {
        flex: 1;
        min-width: 100px;
        font-size: 0.9rem;
    }

    .vocabulary-sidebar {
        width: 100%;
        right: -100%;
    }

    .control-section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .comic-page {
        height: 300px;
    }

    .english-text {
        font-size: 1.1rem;
    }

    .btn-compact {
        min-width: 70px;
        padding: 0.7rem;
    }

    .btn-text-mobile {
        display: none;
    }

    .controls {
        padding: 1.5rem;
    }

    .quiz-option {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* === COMPACT STRIP VIEWER === */
.comic-viewer.compact {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.comic-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 5;
}
.nav-btn:hover { background: rgba(0,0,0,0.7); }
.nav-btn.left { left: 10px; }
.nav-btn.right { right: 10px; }

.text-display.compact {
  text-align: center;
  margin-top: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.8rem;
}

.bottom-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bottom-controls .btn {
  flex: 1 1 120px;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}

/* Responsif */
@media (max-width: 768px) {
  .nav-btn { font-size: 1.5rem; padding: 0.4rem 0.7rem; }
  .bottom-controls .btn { flex: 1 1 45%; }
}
