@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    color: #ffffff;
    overflow: hidden;
    image-rendering: pixelated;
}

.container {
    width: 480px;
    height: 100vh;
    padding: 8px;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #8b4dd8;
    box-shadow: 0 0 15px rgba(139, 77, 216, 0.5), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.header {
    margin-bottom: 8px;
}

.header h1 {
    font-size: 14px;
    color: #ff66ff;
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(255, 102, 255, 0.8), 2px 2px 0 rgba(139, 77, 216, 0.6);
    font-weight: normal;
    letter-spacing: 1px;
}

.version-dropdown {
    width: 100%;
    padding: 5px 6px;
    font-size: 10px;
    font-family: 'Press Start 2P', monospace;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 3px solid #8b4dd8;
    border-radius: 0;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(139, 77, 216, 0.5);
}

.version-dropdown:hover {
    background: rgba(139, 77, 216, 0.3);
    border-color: #ff66ff;
    box-shadow: 0 0 12px rgba(255, 102, 255, 0.8);
}

.version-dropdown:focus {
    border-color: #ff66ff;
    box-shadow: 0 0 15px rgba(255, 102, 255, 1);
}

.content {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
    border: 3px solid #8b4dd8;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8), 0 0 8px rgba(139, 77, 216, 0.3);
}

.content::-webkit-scrollbar {
    width: 6px;
}

.content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
}

.content::-webkit-scrollbar-thumb {
    background: #8b4dd8;
    border-radius: 0;
    box-shadow: 0 0 5px rgba(139, 77, 216, 0.8);
}

.content::-webkit-scrollbar-thumb:hover {
    background: #ff66ff;
    box-shadow: 0 0 5px rgba(255, 102, 255, 1);
}

.loading {
    text-align: center;
    color: #cc99ff;
    font-size: 10px;
    padding: 12px;
}

.changelog-section {
    margin-bottom: 10px;
}

.changelog-section h3 {
    font-size: 10px;
    color: #ff66ff;
    margin-bottom: 5px;
    border-bottom: 3px solid rgba(139, 77, 216, 0.5);
    padding-bottom: 3px;
    text-shadow: 0 0 8px rgba(255, 102, 255, 0.6);
}

.changelog-section ul {
    list-style: none;
    padding-left: 0;
}

.changelog-section li {
    font-size: 9px;
    line-height: 1.7;
    padding: 3px 0;
    padding-left: 12px;
    position: relative;
}

.changelog-section li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #ff66ff;
    font-size: 6px;
}

.changelog-section.added li::before {
    color: #66ffcc;
}

.changelog-section.changed li::before {
    color: #ffcc66;
}

.changelog-section.fixed li::before {
    color: #66ff66;
}

.changelog-section.removed li::before {
    color: #ff6666;
}

.changelog-date {
    font-size: 9px;
    color: #cc99ff;
    margin-bottom: 6px;
    font-style: normal;
    text-shadow: 0 0 5px rgba(204, 153, 255, 0.5);
}

.no-changelog {
    text-align: center;
    color: #cc99ff;
    font-size: 10px;
    padding: 20px;
}
