/* Reset & Base Styles */
:root {
    --bg-color: #050505;
    --bg-secondary: #0f1014;
    --text-primary: #e0e0e0;
    --accent-color: #00f3ff;
    --accent-dark: #00a8b5;
    --accent-glow: rgba(0, 243, 255, 0.5);
    --font-heading: 'Orbitron', 'Sarabun', sans-serif;
    --font-body: 'Rajdhani', 'Sarabun', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

/* Dynamic Background Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 168, 181, 0.05), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
    transition: var(--transition);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

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

.btn-primary:hover {
    color: #fff;
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 30px var(--accent-glow);
    text-shadow: 0 0 5px #fff;
    transform: translateY(-2px);
}

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

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-glow);
}

.divider {
    color: #444;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.85);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
    transition: var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
    opacity: 1;
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    perspective: 1000px;
}

.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 16, 20, 0.9) 0%, rgba(5, 5, 5, 1) 100%);
    z-index: -1;
    overflow: hidden;
}

/* Grid Animation */
.grid-lines {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px) translateZ(-200px); }
}

.hero-content {
    z-index: 1;
    padding: 0 20px;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(5px);
    padding: 40px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #a0a0a0;
    font-weight: 300;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--accent-color);
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
    text-shadow: 0 0 10px var(--accent-glow);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Glitch Effect Enhanced */
.glitch {
    position: relative;
}
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 2s infinite linear alternate-reverse;
}

/* Sections Common */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--accent-dark);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-header .line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 25px auto 0;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Featured Games Carousel */
.featured-carousel {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-content {
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.carousel-slide.active .carousel-content {
    transform: translateY(0);
    opacity: 1;
}

.carousel-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.carousel-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #ccc;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-left: 3px solid var(--accent-color);
}

.vm-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.3);
    position: relative;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent-color);
    clip-path: polygon(0 0, 20px 0, 20px 20px, 0 20px, 0 100%, 100% 100%, 100% 90%, 90% 90%, 90% 0);
    opacity: 0.5;
}

/* Environment Section (Updated for Collage) */
.env-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.env-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.2;
}

.env-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.env-collage {
    position: relative;
    height: 500px;
    width: 100%;
}

.collage-item {
    position: absolute;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    overflow: hidden;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-item:hover {
    z-index: 10;
    transform: scale(1.05) rotate(0deg) !important;
    border-color: var(--accent-color);
}

.collage-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.collage-item:hover .collage-caption {
    opacity: 1;
}

.item-1 {
    width: 50%;
    height: 60%;
    top: 10%;
    left: 0;
    transform: rotate(-5deg);
    z-index: 1;
}

.item-2 {
    width: 55%;
    height: 55%;
    bottom: 5%;
    right: 5%;
    transform: rotate(3deg);
    z-index: 2;
}

.item-3 {
    width: 45%;
    height: 45%;
    top: 0;
    right: 0;
    transform: rotate(8deg);
    z-index: 3;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: rgba(0, 243, 255, 0.05);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: #fff;
    text-shadow: 0 0 15px var(--accent-glow);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(31, 40, 51, 0.5);
    padding: 50px 30px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon {
    transform: scale(1.1);
    text-shadow: 0 0 20px var(--accent-glow);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.service-card p {
    color: #bbb;
    font-size: 1rem;
    position: relative;
}

/* Works Section */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.work-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
}

.work-img-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    background-size: cover;
    background-position: center;
}

.work-item:hover .work-img-placeholder {
    transform: scale(1.1);
    filter: brightness(0.3) blur(2px);
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .work-info {
    transform: translateY(0);
    opacity: 1;
}

.work-info h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.work-info p {
    color: #fff;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(31, 40, 51, 0.3);
    padding: 50px;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-dark);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(0, 243, 255, 0.05);
    border-left-color: var(--accent-color);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 20px;
}

.info-item p {
    font-size: 1.1rem;
    color: #ddd;
}

/* Contact Extra (New) */
.contact-extra {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-extra::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 60%);
    animation: rotate-bg 20s linear infinite;
    z-index: 0;
}

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

.motto-box {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-dark);
    margin-bottom: 20px;
    display: block;
}

.motto-box h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--accent-glow);
}

.motto-box p {
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-5px);
}

.decoration-line {
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.join-us-text {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: #aaa;
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    background: #020202;
    border-top: 1px solid #1a1a1a;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .about-content,
    .contact-wrapper { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { padding: 20px; }
    .env-wrapper { grid-template-columns: 1fr; }
    .env-collage { height: 300px; margin-top: 30px; }
}

/* Game Preview Section */
.game-preview {
    background: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(0, 243, 255, 0.03) 50%, rgba(5,5,5,0) 100%);
}

.preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

.screenshot-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    aspect-ratio: 9/16;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.cta-container {
    text-align: center;
    margin-top: 20px;
}

.cta-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.btn-large {
    padding: 18px 60px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.glow-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(0, 243, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 243, 255, 0.4); }
    100% { box-shadow: 0 0 15px rgba(0, 243, 255, 0.1); }
}

@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}
