/* 
    YOAViNATIONS Website Styles v3.5.1
    Fixed mobile issues: menu, logo sizing, contact layout, swipe support
    Last updated: 2025-08-11
    Changelog: Added mobile menu, fixed responsive issues, improved touch support
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Gaming Theme (Default - Only theme in this file) */
    --primary-color: #ff6b35;
    --secondary-color: #ff8e53;
    --accent-color: #ffa500;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111;
    --bg-card: #1a1a1a;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-accent: linear-gradient(45deg, #ff6b35, #ff8e53);
}

/* ==================== BASE STYLES ==================== */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== MODAL STYLES ==================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-card);
    margin: 3% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

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

.modal-header h2 {
    color: var(--primary-color);
    margin: 0;
}

.close {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-body {
    color: var(--text-secondary);
}

.modal-content h3 {
    color: var(--primary-color);
    margin: 20px 0 10px 0;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-content ul {
    color: var(--text-secondary);
    margin: 10px 0;
    padding-left: 20px;
}

.modal-content li {
    margin-bottom: 8px;
}

.modal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

/* Iframe container styling */
.iframe-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}

/* ==================== GAME MODAL STYLES - FIXED ==================== */

.game-modal-content {
    max-width: 800px;
    background: var(--bg-card) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.game-modal-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.game-modal-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 25px;
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.game-modal-details {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.game-modal-details p {
    margin-bottom: 15px;
    color: var(--text-primary) !important;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px !important;
    color: var(--text-primary) !important;
    font-weight: 400;
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Fixed platform and other info styling */
.game-platforms,
.game-release,
.game-note {
    color: var(--text-primary) !important;
    font-size: 0.95rem;
    background: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.game-platforms strong,
.game-release strong {
    color: var(--primary-color);
    margin-right: 8px;
}

.game-note {
    font-style: italic;
    border-color: var(--accent-color);
}

.game-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0 8px 8px 0;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-color);
}

.game-status-container {
    margin: 25px 0;
    text-align: center;
}

/* Fixed store link styling */
.store-link-container {
    margin: 25px 0;
    text-align: center;
}

.game-store-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-primary) !important;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    min-height: 36px;
    line-height: 20px;
    vertical-align: middle;
}

.game-store-link:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: var(--bg-primary) !important;
}

/* ==================== THEME SELECTOR ==================== */

.theme-selector {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(6, 32px);
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.theme-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.theme-btn::after {
    content: attr(data-name);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    pointer-events: none;
}

.theme-btn:hover::after {
    opacity: 1;
    bottom: -35px;
}

/* ==================== HEADER & LOGO STYLES ==================== */

header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.logo-icon {
    height: 48px;
    width: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text-image {
    height: 32px;
    width: 251px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

.logo-text-image:hover {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)) brightness(1.1);
}

.logo span {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 2px;
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding-top: 80px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

/* ==================== HERO SECTION ==================== */

.hero {
    min-height: 50vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding: 7rem 0 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.hero-logo {
    width: 400px;
    height: 216px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    object-fit: contain;
    display: block;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SECTION STYLES - REDUCED SPACING ==================== */

section {
    padding: 1.5rem 0;
}

.section-title {
    display: none; /* Hide all section titles */
}

/* ==================== ABOUT SECTION ==================== */

.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.about-image {
    text-align: center;
}

.developer-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--text-primary);
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* ==================== GAMES SECTION - MULTI-CARD LAYOUT WITH TOUCH SUPPORT ==================== */

.games {
    background: var(--bg-primary);
    padding: 2rem 0;
}

.game-carousel-container {
    position: relative;
    max-width: 1450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    padding: 20px 40px;
    touch-action: pan-y pinch-zoom;
}

.game-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
    touch-action: pan-x;
}

.game-carousel.dragging {
    transition: none;
}

.game-card {
    width: 450px;
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    user-select: none;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.game-image-full {
    width: 100%;
    height: 253px; /* 16:9 aspect ratio for 450px width */
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.game-image-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
}

.game-info-row {
    padding: 8px 15px;
    background: var(--bg-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 40px;
}

.game-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.game-platform-icons {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.platform-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    vertical-align: middle;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.platform-icon:hover {
    opacity: 1;
}

.game-status {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-status.development {
    background: var(--accent-color);
}

.game-status.completed {
    background: #4CAF50;
}

.game-status.archived {
    background: #757575;
}

/* Hide navigation when not needed */
.carousel-nav.hidden,
.carousel-indicators.hidden {
    display: none !important;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-indicator.active::after,
.carousel-indicator:hover::after {
    opacity: 1;
}

.carousel-indicator.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.carousel-indicator:hover {
    transform: scale(1.2);
}

/* ==================== CONTACT SECTION ==================== */

.contact {
    background: var(--bg-secondary);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    min-height: 50px;
}

.contact-link-icon-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--primary-color);
    padding: 0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    width: 60px;
    height: 60px;
    position: relative;
}

.contact-link:hover,
.contact-link-icon-only:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 28px;
    height: 28px;
    filter: invert(1);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.contact-icon-with-text {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: invert(1);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.contact-link:hover .contact-icon,
.contact-link:hover .contact-icon-with-text,
.contact-link-icon-only:hover .contact-icon {
    filter: invert(0);
}

/* ==================== THEME NAME DISPLAY ==================== */

.theme-display {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #888;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: monospace;
    z-index: 999;
}

/* ==================== FOOTER ==================== */

footer {
    background: #000;
    text-align: center;
    padding: 1.5rem 0;
    color: #666;
    border-top: 1px solid #333;
}

footer p {
    margin-bottom: 0.5rem;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

footer a:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1500px) {
    .game-carousel-container {
        max-width: 1200px;
        padding: 18px 40px;
    }
    
    .game-card {
        width: 420px;
    }
}

@media (max-width: 1400px) {
    .game-carousel-container {
        max-width: 1000px;
        padding: 16px 40px;
    }
    
    .game-card {
        width: 400px;
    }
}

@media (max-width: 1200px) {
    .game-carousel-container {
        max-width: 900px;
        padding: 14px 40px;
    }
    
    .game-card {
        width: 380px;
    }
}

@media (max-width: 900px) {
    .game-carousel-container {
        max-width: 600px;
        padding: 12px 50px;
    }
    
    .game-card {
        width: 350px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Theme Selector */
    .theme-selector {
        grid-template-columns: repeat(5, 28px);
        gap: 4px;
        padding: 8px;
        bottom: 10px;
        right: 10px;
    }

    .theme-btn {
        width: 28px;
        height: 28px;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 0 2rem 0;
    }

    /* Logo Sizes - FIXED */
    .logo-icon {
        height: 32px;
        width: 32px;
    }
    
    .logo-text-image {
        height: 24px;
        width: 188px;
    }
    
    .logo span {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-logo-container {
        margin-bottom: 0.8rem;
    }
    
    .hero-logo {
        width: 250px;
        height: 135px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Games Carousel */
    .game-carousel-container {
        padding: 10px 40px;
        max-width: 100%;
    }

    .game-carousel {
        gap: 15px;
    }

    .game-card {
        width: 300px;
    }

    .game-image-full {
        height: 200px;
        font-size: 3rem;
    }

    .game-info-row {
        padding: 6px 12px;
        height: 36px;
    }

    .game-title {
        font-size: 1.1rem;
    }

    .platform-icon {
        width: 16px;
        height: 16px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-indicators {
        margin-top: 15px;
        gap: 8px;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    /* Contact Section - FIXED to be horizontal when space allows */
    .contact-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .contact-link-icon-only {
        width: 50px;
        height: 50px;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }

    /* Theme Display */
    .theme-display {
        display: none;
    }

    /* Modals */
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .game-modal-content {
        margin: 15% auto;
        max-width: 95%;
    }

    .game-modal-banner {
        height: 180px;
    }
}

/* Very small screens - force vertical contact layout */
@media (max-width: 480px) {
    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .hero-logo {
        width: 200px;
        height: 108px;
    }
}