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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-color: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-whisper: #888888;
    --chaos-color: #d4a574;
    --blood-color: #8b0000;
    --glitch-color: #00ff41;
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'VT323', 'Courier New', monospace;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    width: 100%;
    max-width: 100vw;
}

/* Chinese text support */
body[lang="zh"] {
    font-family: 'VT323', 'SimHei', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    letter-spacing: 0.05em;
}

/* Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .brand-link {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-decoration: none;
    text-shadow: 0 0 10px var(--accent-color);
    transition: all 0.3s ease;
}

.nav-brand .brand-link:hover {
    text-shadow: 0 0 20px var(--accent-color);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.5s;
}

.nav-link:hover:before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.nav-link.active {
    background: rgba(255, 107, 53, 0.1);
}

/* Update language toggle positioning */
.main-nav .language-toggle {
    position: relative;
    top: auto;
    right: auto;
}

/* Language Toggle Button - Updated for header */
.language-toggle {
    /* Positioning handled by main-nav when in header */
}

.lang-btn {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    padding: 8px 16px;
    color: var(--text-primary);
    font-family: 'VT323', monospace;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.lang-icon {
    font-size: 16px;
}

.lang-text {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

/* Responsive design for language toggle */
@media (max-width: 768px) {
    .main-nav {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-brand .brand-link {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 1rem;
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .language-toggle {
        /* Positioning in mobile handled by main-nav flex */
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hero {
        margin-top: 120px; /* More space for mobile header */
    }
}

/* Custom Cursor */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    opacity: 0.7;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 80px; /* Account for fixed header */
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--primary-bg);
    animation: subtle-pulse 8s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { background-color: var(--primary-bg); }
    50% { background-color: #0f0f0f; }
}

/* Glitch Effect */
.glitch-container {
    position: relative;
}

.glitch {
    font-family: 'Orbitron', 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    animation: glitch-animation 2s ease-in-out infinite alternate-reverse;
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch:before {
    animation: glitch-animation-1 0.5s ease-in-out infinite alternate-reverse;
    color: var(--glitch-color);
    z-index: 2;
}

.glitch:after {
    animation: glitch-animation-2 1s ease-in-out infinite alternate-reverse;
    color: var(--accent-color);
    z-index: 1;
}

@keyframes glitch-animation {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-animation-1 {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-animation-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 84px, 0); }
    75% { clip: rect(68px, 9999px, 99px, 0); }
    80% { clip: rect(25px, 9999px, 15px, 0); }
    85% { clip: rect(49px, 9999px, 90px, 0); }
    90% { clip: rect(88px, 9999px, 42px, 0); }
    95% { clip: rect(6px, 9999px, 67px, 0); }
    100% { clip: rect(21px, 9999px, 35px, 0); }
}

/* Hero Subtitle */
.hero-subtitle {
    margin-top: 2rem;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.typewriter {
    overflow: hidden;
    border-right: 0.15em solid var(--accent-color);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-color); }
}

/* Peanut Animation */
.chaos-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chaos-orb {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--chaos-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.chaos-orb:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 8px 0 var(--accent-color), 0 -8px 0 var(--accent-color);
}

.chaos-orb.floating {
    top: 20%;
    left: 5%; /* Reduced from 10% to prevent overflow */
}

.chaos-orb.delay-1 {
    top: 60%;
    right: 5%; /* Reduced from 15% to prevent overflow */
    animation-delay: -2s;
}

.chaos-orb.delay-2 {
    top: 80%;
    left: 60%; /* Reduced from 70% to prevent overflow */
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Narrative Section */
.narrative {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
}

.narrative-text {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.8;
}

.cryptic {
    margin: 1.5rem 0;
    opacity: 0;
    animation: fade-in-up 1s ease forwards;
}

.cryptic:nth-child(1) { animation-delay: 0.5s; }
.cryptic:nth-child(2) { animation-delay: 1s; }
.cryptic:nth-child(3) { animation-delay: 1.5s; }

.emphasis {
    color: var(--accent-color);
    font-weight: bold;
    text-shadow: 0 0 10px var(--accent-color);
}

.whisper {
    color: var(--text-whisper);
    font-style: italic;
    font-size: 0.9em;
    opacity: 0;
    animation: fade-in-up 1s ease forwards 2s;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Explainer Section */
.explainer {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, rgba(26, 26, 26, 0.8) 50%, var(--secondary-bg) 100%);
    position: relative;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.explainer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 65, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.explainer-content {
    position: relative;
    z-index: 1;
}

.explainer-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.7;
}

.explainer-intro {
    text-align: center;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 3rem;
    color: var(--text-primary);
    opacity: 0;
    animation: fade-in-up 1s ease forwards 0.3s;
}

.explainer-section {
    margin: 2.5rem 0;
    opacity: 0;
    animation: fade-in-up 1s ease forwards;
}

.explainer-section:nth-child(2) { animation-delay: 0.6s; }
.explainer-section:nth-child(3) { animation-delay: 0.9s; }

.explainer-subtitle {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.explainer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.explainer-conclusion {
    text-align: center;
    margin: 3rem 0;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--text-primary);
    opacity: 0;
    animation: fade-in-up 1s ease forwards 1.2s;
}

.disclaimer {
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    text-align: center;
    opacity: 0;
    animation: fade-in-up 1s ease forwards 1.5s;
}

.disclaimer p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.call-to-action {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    animation: fade-in-up 1s ease forwards 1.8s;
}

.cta-text {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    margin: 0;
}

/* Responsive adjustments for explainer */
@media (max-width: 768px) {
    .explainer {
        padding: 4rem 0;
    }
    
    .explainer-text {
        text-align: left;
        padding: 0 1rem;
    }
    
    .explainer-intro,
    .explainer-conclusion {
        text-align: center;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--blood-color), var(--accent-color));
    transform: translateX(-50%);
    opacity: 0.3;
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleY(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scaleY(1.05); }
}

.phase-container {
    position: relative;
    opacity: 0;
    animation: phase-reveal 1s ease forwards;
}

.phase-container:nth-child(2) { animation-delay: 0.5s; }
.phase-container:nth-child(3) { animation-delay: 1s; }
.phase-container:nth-child(4) { animation-delay: 1.5s; }

@keyframes phase-reveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phase-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 2rem;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
}

.phase-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.phase-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.phase-card:hover:before {
    opacity: 1;
    animation: sweep 1s ease-in-out;
}

@keyframes sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.phase-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.phase-title {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.phase-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.phase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    height: 200px;
    position: relative;
    z-index: 2;
}

.phase-canvas {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.phase-card:hover .phase-canvas {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.phase-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.phase-card:hover .phase-details {
    opacity: 1;
    max-height: 200px;
}

.phase-details ul {
    list-style: none;
    padding: 0;
}

.phase-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.phase-details li:before {
    content: '🔮';
    position: absolute;
    left: 0;
    top: 0.5rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Phase positioning */
.phase-container[data-phase="1"] .phase-card {
    margin-left: 0;
    margin-right: auto;
    max-width: 500px;
}

.phase-container[data-phase="2"] .phase-card {
    margin-left: auto;
    margin-right: 0;
    max-width: 500px;
}

.phase-container[data-phase="3"] .phase-card {
    margin-left: 0;
    margin-right: auto;
    max-width: 500px;
}

/* Phase connectors */
.phase-container:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 20px var(--accent-color);
    animation: connector-pulse 2s ease-in-out infinite;
}

@keyframes connector-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* Links Section */
.links {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.section-title {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.5s;
}

.link-card:hover:before {
    left: 100%;
}

.link-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.link-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.link-icon svg {
    width: 2rem;
    height: 2rem;
    transition: all 0.3s ease;
}

.link-card:hover .link-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-color));
}

.link-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.link-caption {
    font-size: 0.9rem;
    color: var(--text-whisper);
    font-style: italic;
    line-height: 1.3;
}

/* Token Info */
.token-info {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.label {
    font-weight: bold;
    color: var(--accent-color);
    min-width: 80px;
}

.value {
    font-family: 'VT323', 'Courier New', monospace;
    word-break: break-all;
}

.copyable {
    cursor: pointer;
    transition: color 0.3s ease;
}

.copyable:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--secondary-bg);
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-whisper {
    color: var(--text-whisper);
    font-style: italic;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem;
    }
    
    .token-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    /* Roadmap responsive */
    .roadmap-timeline {
        gap: 2rem;
    }
    
    .timeline-line {
        left: 2rem;
    }
    
    .phase-container:before {
        left: 2rem;
    }
    
    .phase-card {
        margin: 0 0 0 4rem;
        padding: 1.5rem;
    }
    
    .phase-container[data-phase="1"] .phase-card,
    .phase-container[data-phase="2"] .phase-card,
    .phase-container[data-phase="3"] .phase-card {
        margin-left: 4rem;
        margin-right: 0;
        max-width: none;
    }
    
    .phase-number {
        font-size: 2rem;
    }
    
    .phase-title {
        font-size: 1.4rem;
    }
    
    .phase-visual {
        height: 150px;
    }
    
    .phase-canvas {
        width: 150px;
        height: 150px;
    }
    
    /* Better chaos orb positioning for mobile */
    .chaos-orb {
        width: 30px; /* Smaller orbs on mobile */
        height: 30px;
    }
    
    .chaos-orb.floating {
        left: 2%;
    }
    
    .chaos-orb.delay-1 {
        right: 2%;
    }
    
    .chaos-orb.delay-2 {
        left: 50%;
    }
    
    /* Fix typewriter overflow on mobile */
    .typewriter {
        white-space: normal; /* Allow wrapping on mobile */
        text-align: center;
        line-height: 1.4;
        animation: none; /* Disable typewriter animation on mobile */
        border-right: none; /* Remove cursor effect on mobile */
    }
    
    .hero-subtitle {
        padding: 0 1rem; /* Reduce padding on mobile */
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c5a;
}

/* ==================== CONTESTS PAGE STYLES ==================== */

/* Contests Hero Section */
.contests-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--primary-bg);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.contests-hero .container {
    text-align: center;
}

/* Contests page specific glitch styling */

.contests-hero .glitch {
    font-size: clamp(3rem, 6vw, 6rem);
}

/* Layered Glitch Container for Contests */
.layered-glitch-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px; /* Ensure enough space for both texts */
    width: 100%;
}

.glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glitch-layer.main-layer {
    z-index: 3;
}

.glitch-layer.background-layer {
    z-index: 1;
}

/* Background CONTESTS glitch effect */
.glitch-bg {
    font-family: 'Orbitron', 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: rgba(255, 107, 53, 0.3);
    letter-spacing: 0.3em;
    opacity: 0.5;
    animation: glitch-bg-animation 1.5s ease-in-out infinite alternate-reverse;
    transform: translateY(40px) translateX(-10px); /* More offset to show behind main text */
    filter: blur(0.5px); /* Slight blur for background effect */
}

.glitch-bg:before,
.glitch-bg:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-bg:before {
    animation: glitch-bg-animation-1 0.3s ease-in-out infinite alternate-reverse;
    color: rgba(0, 255, 65, 0.4);
    z-index: 2;
}

.glitch-bg:after {
    animation: glitch-bg-animation-2 0.8s ease-in-out infinite alternate-reverse;
    color: rgba(139, 0, 0, 0.5);
    z-index: 1;
}

/* Background glitch animations */
@keyframes glitch-bg-animation {
    0% { transform: translateY(40px) translateX(-10px) translate(0); }
    20% { transform: translateY(40px) translateX(-10px) translate(-4px, 4px); }
    40% { transform: translateY(40px) translateX(-10px) translate(-4px, -4px); }
    60% { transform: translateY(40px) translateX(-10px) translate(4px, 4px); }
    80% { transform: translateY(40px) translateX(-10px) translate(4px, -4px); }
    100% { transform: translateY(40px) translateX(-10px) translate(0); }
}

@keyframes glitch-bg-animation-1 {
    0% { clip: rect(24px, 9999px, 32px, 0); opacity: 0.8; }
    10% { clip: rect(8px, 9999px, 42px, 0); opacity: 0.6; }
    20% { clip: rect(36px, 9999px, 18px, 0); opacity: 0.9; }
    30% { clip: rect(48px, 9999px, 62px, 0); opacity: 0.5; }
    40% { clip: rect(12px, 9999px, 28px, 0); opacity: 0.7; }
    50% { clip: rect(58px, 9999px, 38px, 0); opacity: 0.8; }
    60% { clip: rect(22px, 9999px, 52px, 0); opacity: 0.6; }
    70% { clip: rect(44px, 9999px, 14px, 0); opacity: 0.9; }
    80% { clip: rect(32px, 9999px, 48px, 0); opacity: 0.5; }
    90% { clip: rect(16px, 9999px, 34px, 0); opacity: 0.7; }
    100% { clip: rect(28px, 9999px, 46px, 0); opacity: 0.8; }
}

@keyframes glitch-bg-animation-2 {
    0% { clip: rect(42px, 9999px, 65px, 0); opacity: 0.7; }
    15% { clip: rect(18px, 9999px, 38px, 0); opacity: 0.5; }
    30% { clip: rect(52px, 9999px, 28px, 0); opacity: 0.8; }
    45% { clip: rect(8px, 9999px, 48px, 0); opacity: 0.6; }
    60% { clip: rect(35px, 9999px, 55px, 0); opacity: 0.9; }
    75% { clip: rect(25px, 9999px, 15px, 0); opacity: 0.4; }
    90% { clip: rect(45px, 9999px, 62px, 0); opacity: 0.7; }
    100% { clip: rect(12px, 9999px, 35px, 0); opacity: 0.6; }
}

.contests-hero .hero-subtitle {
    margin-top: 1.5rem;
}

/* Current Contest Section */
.current-contest {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.contest-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.contest-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transform: rotate(-45deg);
    animation: contest-shimmer 3s ease-in-out infinite;
}

@keyframes contest-shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); opacity: 0; }
    50% { transform: translateX(100%) translateY(100%) rotate(-45deg); opacity: 1; }
}

.contest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contest-title {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    margin: 0;
}

.contest-status {
    position: relative;
    z-index: 2;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'VT323', monospace;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse-badge 2s ease-in-out infinite;
}

.status-badge.active {
    background: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.contest-description {
    position: relative;
    z-index: 2;
}

.contest-description p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* X Account Link Styling */
.x-account-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.x-account-link:hover {
    color: var(--glitch-color);
    text-shadow: 0 0 10px var(--glitch-color);
    text-decoration: underline;
}

.contest-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-text {
    font-family: 'VT323', monospace;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Reward Section */
.reward-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, rgba(255, 107, 53, 0.05) 50%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.reward-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: reward-pulse 4s ease-in-out infinite;
}

@keyframes reward-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.reward-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(139, 0, 0, 0.15) 100%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 2;
}

.reward-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(255, 215, 0, 0.1) 25%,
        rgba(255, 107, 53, 0.1) 50%,
        rgba(255, 215, 0, 0.1) 75%,
        transparent 100%
    );
    transform: rotate(-45deg);
    animation: reward-shimmer 6s ease-in-out infinite;
}

@keyframes reward-shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); opacity: 0; }
    50% { transform: translateX(100%) translateY(100%) rotate(-45deg); opacity: 1; }
}

.reward-content {
    position: relative;
    z-index: 3;
    flex: 1;
}

.reward-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.reward-amount {
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.2);
    margin: 1rem 0;
    animation: reward-glow 3s ease-in-out infinite;
}

@keyframes reward-glow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.6),
            0 0 20px rgba(255, 215, 0, 0.4),
            0 0 40px rgba(255, 215, 0, 0.2);
    }
    50% { 
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 0.8),
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4);
        transform: scale(1.02);
    }
}

.reward-note {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-primary);
    font-weight: bold;
    margin-top: 0.5rem;
}

.reward-visual {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.reward-icon {
    font-size: 4rem;
    animation: reward-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

@keyframes reward-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

.reward-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: particle-float 3s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation: particle-float 3s ease-in-out infinite 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation: particle-float 3s ease-in-out infinite 2s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Contest Form Section */
.contest-form-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.contest-form-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 65, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Wallet Connection */
.wallet-connection {
    margin-bottom: 3rem;
    text-align: center;
}

.wallet-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.connect-wallet-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    color: var(--primary-bg);
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.connect-wallet-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
}

.wallet-address {
    font-family: 'VT323', monospace;
    font-size: 1rem;
    color: var(--glitch-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.disconnect-btn {
    background: transparent;
    border: 2px solid rgba(139, 0, 0, 0.5);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    color: var(--blood-color);
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    border-color: var(--blood-color);
    background: rgba(139, 0, 0, 0.1);
}

.hidden {
    display: none !important;
}

/* Form Styles */
.contest-form {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.form-textarea::placeholder {
    color: var(--text-whisper);
    opacity: 0.8;
}

.char-counter {
    text-align: right;
    margin-top: 0.5rem;
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    color: var(--text-whisper);
}

/* File Upload Areas */
.file-upload-area {
    position: relative;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--accent-color);
    background: rgba(255, 107, 53, 0.05);
}

.file-upload-area.drag-over {
    border-color: var(--accent-color);
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.02);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-icon {
    font-size: 2rem;
}

.upload-text {
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.upload-hint {
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    color: var(--text-whisper);
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-preview img,
.file-preview video {
    max-width: 100px;
    max-height: 100px;
    border-radius: 5px;
}

.file-info {
    flex: 1;
    text-align: left;
}

.file-name {
    font-family: 'VT323', monospace;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.file-size {
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    color: var(--text-whisper);
}

.remove-file {
    background: none;
    border: none;
    color: var(--blood-color);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.remove-file:hover {
    color: #ff4444;
}

/* Form Disclaimer */
.form-disclaimer {
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.form-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    border: none;
    border-radius: 25px;
    padding: 1.25rem 2rem;
    color: var(--primary-bg);
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, #666 0%, #888 100%);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Responsive Design for Contests */
@media (max-width: 768px) {
    .contests-hero {
        margin-top: 120px;
        height: 50vh;
        padding: 2rem 0;
    }
    
    .layered-glitch-container {
        min-height: 150px; /* Smaller on mobile */
    }
    
    .glitch-bg {
        font-size: clamp(2.5rem, 7vw, 6rem);
        transform: translateY(30px) translateX(-8px); /* Smaller offset on mobile */
    }
    
    .contests-hero .glitch {
        font-size: clamp(2.5rem, 7vw, 5.5rem);
    }
    
    .contest-card {
        padding: 1.5rem;
    }
    
    .reward-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .reward-visual {
        min-width: auto;
    }
    
    .reward-amount {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .contest-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .contest-details {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 0 1rem;
    }
    
    .contest-form {
        padding: 1.5rem;
    }
    
    .wallet-status {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wallet-info {
        flex-direction: column;
        text-align: center;
    }
    
    .file-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .file-preview img,
    .file-preview video {
        max-width: 150px;
        max-height: 150px;
    }
}