:root {
    --primary-hsl: 150, 100%, 50%;
    --secondary-hsl: 190, 100%, 50%;
    --bg-dark: #0a0c10;
    --bg-card: rgba(20, 25, 35, 0.7);
    --text-main: #ffffff;
    --text-dim: #a0a6b1;
    --primary: hsl(var(--primary-hsl));
    --secondary: hsl(var(--secondary-hsl));
    --gradient-main: linear-gradient(90deg, var(--primary), var(--secondary));
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Dissolved Page ===== */
.dissolved-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 127, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 200, 255, 0.03) 0%, transparent 60%),
        var(--bg-dark);
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    background: var(--primary);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) scale(0.3);
        opacity: 0;
    }
}

/* Main container */
.dissolved-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Icon */
.dissolved-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #ff4757;
    opacity: 0.8;
    animation: pulse 3s ease-in-out infinite;
}

.dissolved-icon svg {
    width: 100%;
    height: 100%;
}

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

/* Title */
.dissolved-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Divider */
.dissolved-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-main);
    margin: 0 auto 2rem;
    border-radius: 2px;
    opacity: 0.6;
}

/* Messages */
.dissolved-message {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.dissolved-message strong {
    color: var(--text-main);
    font-weight: 700;
}

.dissolved-submessage {
    font-size: 1rem;
    color: var(--text-dim);
    opacity: 0.7;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Info box */
.dissolved-info {
    padding: 1.5rem 2rem;
    text-align: left;
    width: 100%;
    animation: fadeInScale 1s ease-out 0.3s backwards;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    gap: 1rem;
}

.info-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
    white-space: nowrap;
}

.info-value {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
    text-align: right;
}

.status-badge {
    background: rgba(255, 71, 87, 0.15);
    color: #ff6b7a;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 71, 87, 0.2);
    white-space: nowrap;
}

/* Footer */
.dissolved-footer {
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
    z-index: 10;
    flex-shrink: 0;
}

.dissolved-footer p {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.footer-link {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.4;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary);
    opacity: 1;
}

/* Powered by */
.powered-by {
    position: fixed;
    bottom: 1rem;
    left: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.4;
    z-index: 50;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.powered-by:hover {
    opacity: 0.8;
}

.powered-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.powered-by a:hover {
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .dissolved-page {
        padding: 1rem 0.75rem;
    }

    .dissolved-title {
        font-size: 2.2rem;
    }

    .dissolved-container {
        padding: 1rem;
    }

    .dissolved-message {
        font-size: 1rem;
    }

    .dissolved-submessage {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .dissolved-info {
        padding: 1rem 1.25rem;
    }

    .info-row {
        padding: 0.7rem 0;
    }

    .info-label {
        font-size: 0.85rem;
    }

    .info-value {
        font-size: 0.85rem;
    }

    .dissolved-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .dissolved-footer p {
        font-size: 0.75rem;
    }
}