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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #fff;
}

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

.header {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.header h1 {
    font-size: 4rem;
    color: #e94560;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

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

.subtitle {
    font-size: 1.3rem;
    color: #a0a0a0;
    font-style: italic;
}

.credit {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.story-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote {
    font-size: 5rem;
    color: #e94560;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    padding-left: 40px;
}

.highlight {
    color: #e94560;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #e94560;
}

.remember-section {
    text-align: center;
    padding: 40px 0;
}

.remember-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.remember-section p {
    margin-bottom: 20px;
    color: #a0a0a0;
}

#remember-btn {
    background: linear-gradient(135deg, #e94560 0%, #c23152 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

#remember-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6);
}

#remember-btn:active {
    transform: translateY(0);
}

.result {
    margin-top: 30px;
    padding: 20px;
    background: rgba(233, 69, 96, 0.2);
    border-radius: 10px;
    font-size: 1.1rem;
    min-height: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.result.show {
    opacity: 1;
    transform: translateY(0);
}

.faq {
    margin: 50px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e94560;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #e94560;
}

.faq-item strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.1rem;
}

.faq-item p {
    color: #a0a0a0;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

@media (max-width: 600px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .story-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .quote {
        font-size: 3rem;
        left: 10px;
    }
    
    #remember-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .status-box {
        grid-template-columns: 1fr;
    }
    
    .diary-entries {
        padding: 15px;
    }
    
    .memes {
        grid-template-columns: 1fr;
    }
}

/* Investigation Section */
.investigation {
    margin: 50px 0;
}

.investigation h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e94560;
}

.status-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.status-item {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

.status-item .label {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.status-item .value {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

/* Diary Section */
.diary {
    margin: 50px 0;
}

.diary h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e94560;
}

.diary-entries {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #e94560;
}

.entry {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.entry:last-child {
    border-bottom: none;
}

.entry .date {
    display: block;
    font-size: 0.8rem;
    color: #e94560;
    margin-bottom: 5px;
    font-style: italic;
}

.entry p {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
}

/* Secret Section */
.secret {
    margin: 50px 0;
    text-align: center;
}

.secret h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #e94560;
}

.secret > p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.password-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.password-box input {
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #e94560;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    outline: none;
    width: 250px;
}

.password-box input::placeholder {
    color: #666;
}

.password-box button {
    padding: 12px 25px;
    font-size: 1rem;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-box button:hover {
    background: #c23152;
    transform: translateY(-2px);
}

.secret-content {
    margin-top: 20px;
    padding: 25px;
    background: rgba(233, 69, 96, 0.15);
    border-radius: 15px;
    border: 1px dashed #e94560;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.secret-content.show {
    opacity: 1;
    transform: translateY(0);
}

.secret-text h3 {
    color: #e94560;
    margin-bottom: 15px;
}

.secret-text ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.secret-text li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.secret-text li::before {
    content: "📁 ";
}

.error {
    color: #ff6b6b;
    font-weight: bold;
}

/* Meme Section */
.meme-section {
    margin: 50px 0;
}

.meme-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e94560;
}

.memes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.meme-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meme-card:hover {
    transform: translateY(-5px);
    background: rgba(233, 69, 96, 0.2);
    border-color: #e94560;
}

.meme-image {
    font-size: 4rem;
    margin-bottom: 15px;
}

.meme-card p {
    color: #ccc;
    font-style: italic;
}

/* Report Section */
.report {
    margin: 50px 0;
}

.report h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e94560;
}

.missing-poster {
    background: #fff;
    color: #333;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.poster-content {
    text-align: center;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    border: 3px dashed #ccc;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #999;
}

.poster-content h3 {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.poster-content p {
    margin: 10px 0;
    text-align: left;
    line-height: 1.6;
}

.poster-content .warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #856404;
}
