@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --rainbow-gradient: linear-gradient(135deg, 
        #ff006e 0%, 
        #ff4081 12.5%, 
        #ff7043 25%, 
        #ffc107 37.5%, 
        #4caf50 50%, 
        #00bcd4 62.5%, 
        #2196f3 75%, 
        #9c27b0 87.5%, 
        #e91e63 100%);
    --pixel-font: 'Press Start 2P', monospace;
    --modern-font: 'Inter', sans-serif;
    --primary-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glow-effect: 0 0 30px rgba(255, 215, 0, 0.6);
    --glassmorphism: rgba(255, 255, 255, 0.1);
    --glassmorphism-border: rgba(255, 255, 255, 0.2);
    --dark-bg: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    --mint-gradient: linear-gradient(135deg, #00ffcc, #ccff00, #ff99cc);
}

body {
    font-family: var(--modern-font);
    background: var(--dark-bg);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 20px;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--glassmorphism-border);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: var(--primary-shadow);
}

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

.logo {
    font-family: var(--pixel-font);
    font-size: 1.2rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glassmorphism);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glassmorphism-border);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.language-switcher:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.lang-option {
    color: #ffd700; /* Changed to solid gold color */
    text-decoration: none;
    font-family: var(--pixel-font);
    font-size: 0.7rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-option.active {
    background: rgba(255, 215, 0, 0.2); /* Subtle gold background for active state */
    color: #ffd700; /* Keep text gold */
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.lang-option:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.lang-separator {
    color: #ffd700; /* Changed to gold */
    font-size: 0.8rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rainbow-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 1s ease-in-out 2.5s forwards;
}

.loading-text {
    font-family: var(--pixel-font);
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: textGlow 1s ease-in-out alternate infinite;
    margin-bottom: 20px;
}

.progress-bar {
    width: 200px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.progress-bar::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    animation: progressFill 2.5s linear forwards;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 110px 20px 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rainbow-gradient);
    opacity: 0.1;
    animation: backgroundShift 8s ease-in-out infinite;
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--rainbow-gradient);
    filter: blur(1px);
    transition: transform 0.3s ease;
}

.orb:hover {
    transform: scale(1.2);
    animation-play-state: paused;
    filter: blur(0.5px) brightness(1.2);
}

.orb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.5;
    animation: trailFade 1s linear infinite;
}

.orb:nth-child(1) {
    width: 110px;
    height: 110px;
    top: 20%;
    left: 10%;
    animation: orbFloat1 15s linear infinite;
}

.orb:nth-child(2) {
    width: 70px;
    height: 70px;
    top: 60%;
    right: 15%;
    animation: orbFloat2 12s linear infinite;
}

.orb:nth-child(3) {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 20%;
    animation: orbFloat3 18s linear infinite;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.main-character {
    width: 280px;
    height: 280px;
    position: relative;
    animation: characterHover 4s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.main-character:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

.character-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--primary-shadow);
}

.character-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out alternate infinite;
    pointer-events: none;
}

.smoke-container {
    position: absolute;
    right: 12%;
    top: 45.71%;
    width: 8.57%;
    height: 8.57%;
    z-index: 10;
}

.smoke-puff {
    position: absolute;
    width: 26.67%;
    height: 83.33%;
    background: linear-gradient(to top, rgba(180, 180, 180, 0.7), rgba(255, 255, 255, 0.1));
    clip-path: ellipse(40% 70% at 50% 50%);
    filter: blur(1px);
    animation: smokeCurl 3s ease-out infinite;
    opacity: 0.5;
}

.hero-title {
    font-family: var(--pixel-font);
    font-size: 2.8rem;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: titleFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--rainbow-gradient);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out alternate infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    z-index: 3;
}

.mint-link {
    display: inline-block;
    padding: 18px 40px;
    background: var(--mint-gradient);
    color: #1a1a2e;
    text-decoration: none;
    font-family: var(--pixel-font);
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4), 0 0 15px rgba(0, 255, 204, 0.6);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.mint-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.mint-link:hover::before {
    transform: translateX(0);
}

.mint-link:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.6), 0 0 25px rgba(0, 255, 204, 0.8);
    color: #fff;
}

.mint-link:active {
    transform: scale(0.98) translateY(2px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

.mint-link::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--mint-gradient);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
    animation: glowPulse 2s ease-in-out infinite alternate;
}

.floating-pixels {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-pixel {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 1px;
    box-shadow: 0 0 10px currentColor;
    animation: pixelFloat 4s infinite linear;
}

.about-section {
    padding: 120px 20px;
    background: rgba(255,255,255,0.02);
    position: relative;
    backdrop-filter: blur(10px);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--rainbow-gradient);
    opacity: 0.4;
}

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

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

.section-title {
    text-align: center;
    font-family: var(--pixel-font);
    font-size: 2.4rem;
    margin-bottom: 4rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 2px;
    animation: sectionTitleGlow 3s ease-in-out alternate infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--rainbow-gradient);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255,215,0,0.5);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    transition: all 0.3s ease;
}

.about-text:hover {
    color: rgba(255,255,255,1);
    transform: translateY(-2px);
}

.nft-scroll-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.nft-scroll-container {
    display: flex;
    animation: scrollRightToLeft 24s infinite linear;
    white-space: nowrap;
    gap: 20px;
    will-change: transform; /* Optimize for performance */
}

.nft-scroll-card {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--glassmorphism-border);
    box-shadow: var(--primary-shadow);
}

.nft-scroll-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--rainbow-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nft-scroll-card:hover::before {
    opacity: 1;
}

.nft-scroll-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 25px 50px rgba(255,215,0,0.4);
}

.nft-scroll-container:hover {
    animation-play-state: paused;
}

.nft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.nft-scroll-card:hover .nft-image {
    transform: scale(1.1);
}

.footer {
    background: rgba(0,0,0,0.8);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--glassmorphism-border);
    backdrop-filter: blur(20px);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--rainbow-gradient);
    opacity: 0.7;
}

.social-links {
    display: inline-flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    padding: 15px 30px;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glassmorphism-border);
    color: white;
    text-decoration: none;
    font-family: var(--pixel-font);
    font-size: 0.7rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--rainbow-gradient);
    transition: left 0.5s ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255,215,0,0.4);
}

.footer-text {
    font-family: var(--pixel-font);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
}

/* Animations */
@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255,215,0,0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(255,215,0,0.8)); }
}

@keyframes progressFill {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes backgroundShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(1deg) scale(1.02); }
}

@keyframes orbFloat1 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) translateX(20px) rotate(45deg) scale(1.2); }
    50% { transform: translateY(10px) translateX(-15px) rotate(90deg) scale(0.8); }
    75% { transform: translateY(-20px) translateX(10px) rotate(135deg) scale(1.1); }
    100% { transform: translateY(0px) translateX(0px) rotate(180deg) scale(1); }
}

@keyframes orbFloat2 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(25px) translateX(-10px) rotate(-45deg) scale(0.9); }
    50% { transform: translateY(-15px) translateX(20px) rotate(-90deg) scale(1.3); }
    75% { transform: translateY(10px) translateX(-5px) rotate(-135deg) scale(1); }
    100% { transform: translateY(0px) translateX(0px) rotate(-180deg) scale(1); }
}

@keyframes orbFloat3 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) translateX(-25px) rotate(30deg) scale(1.1); }
    50% { transform: translateY(20px) translateX(15px) rotate(60deg) scale(0.7); }
    75% { transform: translateY(-15px) translateX(-10px) rotate(90deg) scale(1.2); }
    100% { transform: translateY(0px) translateX(0px) rotate(120deg) scale(1); }
}

@keyframes trailFade {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
}

@keyframes characterHover {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes glowPulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px rgba(255,215,0,0.5); }
    100% { box-shadow: 0 0 20px rgba(255,215,0,0.8); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255,215,0,0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(255,215,0,0.8)); }
}

@keyframes sectionTitleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255,215,0,0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(255,215,0,0.6)); }
}

@keyframes pixelFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

@keyframes scrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1330px); } /* 5 cards (1250px) + 4 gaps (80px) */
}

@keyframes smokeCurl {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    20% {
        transform: translateY(-5px) translateX(3px) scale(1.1) rotate(15deg);
        opacity: 0.45;
    }
    40% {
        transform: translateY(-10px) translateX(-3px) scale(1.2) rotate(-15deg);
        opacity: 0.4;
    }
    60% {
        transform: translateY(-20px) translateX(5px) scale(1.3) rotate(20deg);
        opacity: 0.35;
    }
    80% {
        transform: translateY(-30px) translateX(-5px) scale(1.2) rotate(-10deg);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-40px) translateX(3px) scale(1.1) rotate(5deg);
        opacity: 0;
    }
}

@keyframes fadeOut {
    to { opacity: 0; pointer-events: none; }
}

@keyframes numberPulse {
    0% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255,215,0,0.5));
    }
    100% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255,215,0,0.8));
    }
}

@keyframes borderPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes glowPulse {
    0% { filter: brightness(1) blur(10px); }
    100% { filter: brightness(1.2) blur(15px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 15px 50px;
    }
    .main-character {
        width: 260px;
        height: 260px;
    }
    .smoke-container {
        right: 12%;
        top: 44%;
        width: 9%;
        height: 9%;
    }
    .orb:nth-child(1) {
        width: 90px;
        height: 90px;
        top: 15%; /* Adjusted to avoid overlap with header */
        left: 5%;
    }
    .orb:nth-child(2) {
        width: 60px;
        height: 60px;
        top: 65%; /* Adjusted to give more space around main character */
        right: 10%;
    }
    .orb:nth-child(3) {
        width: 40px;
        height: 40px;
        bottom: 35%; /* Adjusted to avoid overlap with countdown timer */
        left: 15%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 90px 15px 50px;
    }
    .hero-title { 
        font-size: 2.2rem; 
        margin-bottom: 0.4rem;
    }
    .hero-subtitle { 
        font-size: 1.1rem; 
        margin-bottom: 0.4rem;
    }
    .main-character { 
        width: 220px; 
        height: 220px; 
        margin-bottom: 0.5rem;
    }
    .smoke-container {
        right: 12%;
        top: 42.14%;
        width: 10.71%;
        height: 10.71%;
    }
    .mint-link {
        font-size: 0.9rem;
        padding: 14px 30px;
    }
    .social-link {
        padding: 12px 25px;
        font-size: 0.7rem;
    }
    .section-title { 
        font-size: 2rem; 
        margin-bottom: 3rem;
    }
    .nft-scroll-card { 
        width: 200px; 
        height: 200px; 
    }
    .about-text {
        font-size: 1.1rem;
    }
    .orb:nth-child(1) {
        width: 70px;
        height: 70px;
        top: 10%; /* Further adjusted to avoid overlap */
        left: 5%;
    }
    .orb:nth-child(2) {
        width: 50px;
        height: 50px;
        top: 70%; /* Adjusted to avoid main character and countdown timer */
        right: 5%;
    }
    .orb:nth-child(3) {
        width: 30px;
        height: 30px;
        bottom: 40%; /* Adjusted to give more space above countdown timer */
        left: 10%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 10px 40px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .main-character {
        width: 180px;
        height: 180px;
        margin-bottom: 0.3rem;
    }
    .smoke-container {
        right: 12%;
        top: 41%;
        width: 11%;
        height: 11%;
    }
    .mint-link {
        font-size: 0.8rem;
        padding: 12px 25px;
    }
    .social-link {
        padding: 10px 20px;
        font-size: 0.6rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .nft-scroll-card {
        width: 180px;
        height: 180px;
    }
    .about-text {
        font-size: 1rem;
    }
    .orb:nth-child(1) {
        width: 50px;
        height: 50px;
        top: 5%; /* Adjusted for smaller screens */
        left: 5%;
    }
    .orb:nth-child(2) {
        width: 40px;
        height: 40px;
        top: 75%; /* Adjusted to avoid overlap with countdown timer */
        right: 5%;
    }
    .orb:nth-child(3) {
        width: 25px;
        height: 25px;
        bottom: 45%; /* Adjusted to give more space */
        left: 10%;
    }
}