@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #ABFFE9;
    font-family: 'Courier Prime', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ABFFE9, 0 0 20px #ABFFE9, 0 0 30px #ABFFE9;
    letter-spacing: 4px;
}

.perks-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #ABFFE9;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.perk-item {
    background: rgba(171, 255, 233, 0.1);
    border: 1px solid #ABFFE9;
    padding: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.perk-item:hover, .perk-item.selected {
    background: rgba(171, 255, 233, 0.2);
    box-shadow: 0 0 15px #ABFFE9;
    transform: translateY(-2px);
}

.perk-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ABFFE9;
}

.perk-name {
    font-size: 1rem;
    opacity: 0.9;
}

.instructions {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 2rem;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.03) 2px,
        rgba(0, 255, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1000;
}

/* Animation for selection */
@keyframes glow {
    0% { box-shadow: 0 0 5px #ABFFE9; }
    50% { box-shadow: 0 0 20px #ABFFE9; }
    100% { box-shadow: 0 0 5px #ABFFE9; }
}

.perk-item.selected {
    animation: glow 1s infinite;
} 