body {
    background-color: #1a1a1a;
    color: #00ff41;
    font-family: 'VT323', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px;
}

#main-container {
    border: 2px solid #00ff41;
    padding: 30px;
    background-color: #000;
    box-shadow: 0 0 15px #00ff41, 0 0 25px #00ff41 inset;
    max-width: 600px;
    width: 100%;
}

header h1 {
    font-size: 2.5em;
    text-shadow: 0 0 5px #00ff41;
    margin-bottom: 0;
}

header p {
    font-size: 1.2em;
    color: #888;
    margin-top: 5px;
}

#idea-card {
    border: 1px dashed #00ff41;
    padding: 20px;
    margin: 30px 0;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-title {
    font-size: 1.8em;
    margin: 0 0 10px 0;
    color: #fff;
}

#video-description {
    font-size: 1.2em;
    line-height: 1.5;
}

#generate-btn {
    background-color: #00ff41;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-family: 'VT323', monospace;
    font-size: 1.5em;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px #00ff41;
}

#generate-btn:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px #fff;
}

#generate-btn:disabled {
    background-color: #555;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}


#loading {
    margin-top: 20px;
    font-size: 1.2em;
}

.hidden {
    display: none;
}

