:root {
    --primary: #f87171;
    --primary-glow: rgba(248, 113, 113, 0.6);
    --secondary: #60a5fa;
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg-dark);
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        justify-content: flex-start;
        padding: 0.5rem 0;
    }
    .container {
        padding: 1.2rem 1rem;
        width: 95%;
    }
    header {
        margin-bottom: 0.8rem;
    }
    .main-title {
        margin-bottom: 0.4rem;
    }
}

.container {
    width: 90%;
    max-width: 720px;
    padding: 2.4rem 1.6rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(248, 113, 113, 0.15);
}

.name-modal, .comment-modal {
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
}

.name-modal p, .comment-modal p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.glass-panel:not(.name-modal):not(.comment-modal) {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1.2s ease-out forwards;
}

header { margin-bottom: 1.5rem; }

.main-title {
    font-size: clamp(1.8rem, 4vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { filter: drop-shadow(0 0 5px rgba(248, 113, 113, 0.5)); }
    to { filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.8)); }
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: #cbd5e1;
    letter-spacing: 2px;
}
