/* Once Human 2.2.3 TL;DR - Dark Purple Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #e0e0e0;
    line-height: 1.6;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #000000;
    overflow: hidden;
}

header {
    background: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

h1 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: none;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.subtitle {
    font-size: 1.1em;
    color: #888888;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.tldr-badge {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.95em;
    margin-top: 15px;
    box-shadow: none;
    position: relative;
    z-index: 1;
    border: none;
}

.content {
    padding: 20px;
    background: #000000;
}

.highlight-box {
    background: #1a1a1a;
    border-left: 3px solid #7c3aed;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.reward-summary {
    background: #1a1a1a;
    border-left: 3px solid #7c3aed;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

h2 {
    color: #ffffff;
    font-size: 1.6em;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
}

h3 {
    color: #ffffff;
    font-size: 1.2em;
    margin: 20px 0 15px 0;
    font-weight: 500;
}

.icon {
    font-size: 1.3em;
}

ul {
    margin-left: 0;
    list-style: none;
}

li {
    margin: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.8;
}

li::before {
    content: '▸';
    position: absolute;
    left: 10px;
    color: #d8a7b1;
    font-weight: bold;
    font-size: 1.2em;
}

.key-point {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px 0;
    border-left: 3px solid #7c3aed;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

strong {
    color: #ffffff;
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    backdrop-filter: none;
    border: none;
}

.tag.new { 
    background: #7c3aed; 
    color: #ffffff;
}

.tag.event { 
    background: #7c3aed; 
    color: #ffffff;
}

.tag.shop { 
    background: #7c3aed; 
    color: #ffffff;
}

.tag.fix { 
    background: #7c3aed; 
    color: #ffffff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    border: none;
    background: #222222;
}

.divider {
    height: 1px;
    background: #2a2a2a;
    margin: 30px 0;
}

footer {
    background: #1a1a1a;
    padding: 20px;
    text-align: center;
    color: #888888;
    font-size: 0.9em;
    border-top: 1px solid #2a2a2a;
}

.emoji {
    font-size: 1.2em;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .container {
        border-radius: 0;
    }

    header {
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    .content {
        padding: 20px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
