:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #06b6d4;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Grid - Subtle */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Noise texture for depth */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

.glow-top-left,
.glow-bottom-right {
    position: fixed;
    width: 600px;
    height: 600px;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.glow-top-left {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.glow-bottom-right {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md) 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: var(--spacing-sm) 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

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

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-container {
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 6px;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.flag {
    width: 20px;
    height: 15px;
}

/*
   --------------------------
   HERO SECTION - 50/50 LAYOUT (RECREATED FROM SCRATCH)
   --------------------------
*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Exact 50/50 split */
    align-items: center;
    min-height: 100vh;
    gap: 3rem;
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--spacing-md);
    margin: 0 auto;
}

/* Text content on LEFT side - 50% of viewport */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 0 1.5rem 0 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    justify-content: flex-start;
}

/* Image on RIGHT side - 50% of viewport, full height */
.hero-image-container {
    position: relative;
    width: 100%;
    height: clamp(50vh, 70vh, 80vh);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Gradient overlay on all sides for seamless blend */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--bg-primary) 0%, transparent 15%),
        linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%),
        linear-gradient(to right, var(--bg-primary) 0%, transparent 15%),
        linear-gradient(to left, var(--bg-primary) 0%, transparent 15%);
    pointer-events: none;
    z-index: 2;
}

/* Buttons - Professional Design */
.btn {
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    position: relative;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Tech Stack Title Spacing */
.tech-stack-title {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Tech Stack with Infinite Scroll Animation */
.tech-stack {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: var(--spacing-sm);
}

.tech-stack::before,
.tech-stack::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.tech-stack::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.tech-stack::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.tech-grid {
    display: flex;
    gap: var(--spacing-md);
    animation: scroll-left 35s linear infinite;
    width: max-content;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 120px;
    flex-shrink: 0;
}

.tech-item:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-5px);
}

/* SVG Size Control */
.tech-icon {
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.05);
}

.tech-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.3s ease;
}

.tech-item:hover .tech-label {
    color: var(--accent-primary);
}

/* Skill icon styling */
.skill-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
}

.skill-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-primary);
}

.skill-icon.ia-icon svg {
    width: 40px;
    height: 40px;
}


/* General Sections - Enhanced */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

#about {
    padding-top: 2rem;
}

.section-label {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* Grid Layouts for Skills/Stats/Portfolio */
.stats-grid,
.skills-grid,
.portfolio-regular,
.education-grid {
    display: grid;
    gap: 2rem;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.skills-grid,
.portfolio-regular,
.education-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.stat-card,
.skill-card,
.portfolio-card,
.education-card {
    background: linear-gradient(135deg, rgba(26, 26, 37, 0.6), rgba(26, 26, 37, 0.3));
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    overflow-wrap: break-word;
}

.skill-card p {
    color: var(--text-secondary);
}

.stat-card:hover,
.skill-card:hover,
.portfolio-card:hover,
.education-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.stat-card {
    min-height: auto;
    padding: 2.5rem 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-icon svg {
    width: 4rem;
    height: 4rem;
}

.stat-icon img {
    width: 6rem;
    height: 6rem;
    filter: brightness(0) saturate(100%) invert(45%) sepia(89%) saturate(2504%) hue-rotate(226deg) brightness(98%) contrast(93%);
    opacity: 0.9;
}

/* Portfolio Specifics */
.portfolio-grid {
    display: grid;
    gap: var(--spacing-md);
}

.portfolio-featured {
    grid-column: 1 / -1;
}

.portfolio-card.featured {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(26, 26, 37, 0.6), rgba(26, 26, 37, 0.3));
}

.portfolio-regular .portfolio-card {
    padding-top: 3.5rem;
}

.portfolio-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    min-height: 110px;
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.portfolio-info h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.portfolio-role {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.portfolio-description {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.portfolio-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: var(--spacing-md);
}

.portfolio-logo,
.education-logo {
    min-width: 80px;
    height: 80px;
    padding: 0 1rem;
    background: rgba(240, 240, 245, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-logo-img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(89%) saturate(2504%) hue-rotate(226deg) brightness(98%) contrast(93%);
    opacity: 0.9;
}

.portfolio-logo-img-coppead {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(89%) saturate(2504%) hue-rotate(226deg) brightness(98%) contrast(93%);
    opacity: 0.9;
}

.portfolio-tags,
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: auto;
    padding-top: var(--spacing-md);
    align-items: flex-start;
    justify-content: flex-start;
}

.tag {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--accent-primary);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-color: var(--accent-primary);
}

/* Contact/Footer - Enhanced */
.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 120px;
    background: transparent;
    border: none;
    text-decoration: none;
}

.contact-item:hover {
    background: transparent;
    transform: translateY(-5px);
    border: none;
    box-shadow: none;
}

.contact-icon {
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-item:hover .contact-label {
    color: var(--accent-primary);
}

.footer-content {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: var(--spacing-lg) 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Badge styling for awards */
.badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    color: #ffdaa0;
    font-weight: 600;
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.badge:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.badge svg {
    width: 14px;
    height: 14px;
}

/* Responsive - Smooth Transitions */





/* Medium Desktop - Start tightening */
@media (max-width: 1200px) {
    .hero .container {
        gap: 2rem;
    }

    .hero-content {
        padding: 0 1rem 0 0;
    }

    .hero-image-container {
        height: clamp(50vh, 60vh, 70vh);
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    }
}

/* Small Desktop/Large Tablet - Transition point */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
        padding: 100px 2rem 2rem 2rem;
        align-items: center;
        max-width: 100%;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 50vh;
        max-height: 70vh;
        order: 2;
        align-items: center;
    }

    .hero-image-container img {
        width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain !important;
        object-position: center !important;
    }

    .hero-content {
        text-align: center;
        order: 1;
        max-width: 100%;
        padding: 0 1rem;
        min-height: auto;
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.4rem);
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-gradient-overlay {
        background:
            linear-gradient(to top, var(--bg-primary) 0%, transparent 12%),
            linear-gradient(to right, var(--bg-primary) 0%, transparent 8%),
            linear-gradient(to left, var(--bg-primary) 0%, transparent 8%);
    }
}

/* Tablet - Further adjustments */
@media (max-width: 900px) {
    .hero-image-container {
        max-height: 60vh;
        min-height: 45vh;
        max-width: 450px;
    }

    .hero-image-container img {
        max-height: 60vh;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-gradient-overlay {
        background:
            linear-gradient(to right, var(--bg-primary) 0%, transparent 8%),
            linear-gradient(to left, var(--bg-primary) 0%, transparent 8%);
    }
}

/* Small Tablet - More compact */
@media (max-width: 768px) {
    .hero .container {
        padding: 90px 1.5rem 1.5rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-image-container {
        max-height: 55vh;
        min-height: 40vh;
        max-width: 400px;
    }

    .hero-image-container img {
        max-height: 55vh;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }

    .hero-gradient-overlay {
        background:
            linear-gradient(to top, var(--bg-primary) 0%, transparent 12%),
            linear-gradient(to right, var(--bg-primary) 0%, transparent 8%),
            linear-gradient(to left, var(--bg-primary) 0%, transparent 8%);
    }
}



/* Utilities for language toggling */
[data-lang] {
    display: none;
}

[data-lang].active {
    display: block;
}

[data-lang].active.inline-block {
    display: inline-block;
}

[data-lang].active.flex {
    display: flex;
}

[data-lang].active.grid {
    display: grid;
}

/* Education Section Enhancements */
.education-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    min-height: 110px;
}

/* Already handled in .portfolio-logo unified block */

.education-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.education-card h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.education-year {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.education-institution {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.education-area {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}