:root {
    --bg-color: #0000aa; /* Retro blue background */
    --text-color: #ffffff;
    --box-bg: #000000;
    --border-color: #ffffff;
    --highlight: #ff0055;
    --font-family: 'Press Start 2P', cursive;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
    font-size: 12px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--box-bg);
    border: 4px solid var(--border-color);
    padding: 20px;
    box-shadow: 10px 10px 0px 0px #000055;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 24px;
    color: #ffff00; /* Retro yellow */
    text-shadow: 2px 2px #ff0000;
    line-height: 1.4;
}

h2 {
    font-size: 16px;
    color: var(--highlight);
    margin-bottom: 15px;
}

.video-container {
    text-align: center;
    margin-bottom: 20px;
}

.video-link-wrapper {
    display: inline-block;
    position: relative;
    border: 4px solid var(--highlight);
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.video-link-wrapper:hover {
    transform: scale(1.05);
}

.majul-img {
    display: block;
    max-width: 100%;
    width: 315px; /* Keeps the old iframe width */
    height: auto;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 0 #ff0055;
    border: 2px solid white;
}

.description-text {
    text-align: center;
    font-size: 10px;
    color: #aaaaaa;
    margin-bottom: 30px;
    line-height: 1.4;
}

.form-container {
    background-color: #111111;
    padding: 20px;
    border: 2px dashed #555555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    color: #00ff00; /* Retro green */
}

input[type=range] {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-vertical {
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    cursor: pointer;
    font-size: 10px;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.pixel-btn {
    display: block;
    width: 100%;
    background-color: var(--highlight);
    color: white;
    border: 4px solid white;
    padding: 15px;
    font-family: var(--font-family);
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.1s, background-color 0.2s;
    margin-top: 20px;
}

.pixel-btn:hover {
    background-color: #ff3377;
    transform: scale(1.02);
}

.pixel-btn:active {
    transform: scale(0.98);
}

.result-container {
    margin-top: 30px;
    border: 4px solid #00ff00;
    padding: 20px;
    background-color: #002200;
}

.result-box {
    margin-top: 15px;
}

.result-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.result-box p strong {
    color: #ffff00;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #555555;
}

footer p {
    font-size: 8px;
    color: #666666;
}
