/* 🌑 Jaraflix Downloader Theme */

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
    width: 90%;
    max-width: 480px;
    text-align: center;
    animation: fadeIn 0.7s ease-in-out;
}

h1 {
    color: #00e676;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 25px;
}

label {
    display: block;
    text-align: left;
    color: #00e676;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #222;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    outline: none;
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: border 0.3s ease;
}

input[type="text"]:focus {
    border-color: #00e676;
}

button {
    background: linear-gradient(135deg, #00e676, #00b248);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #00ff88, #00e676);
}

#result {
    background: #0f0f0f;
    border: 1px solid #00e67640;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
}

#result.visible {
    opacity: 1;
    transform: translateY(0);
}

#downloadLink {
    display: inline-block;
    color: #00e676;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    word-break: break-all;
}

#downloadLink:hover {
    text-decoration: underline;
}

/* 🔥 Animation for entry */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}


body {
    font-family: Arial, sans-serif;
    background-color: #0e0e0e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #121212;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
}

button {
    background-color: #00c853;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #00e676;
}

#result {
    margin-top: 20px;
}

.hidden {
    display: none;
}

a {
    color: #00e676;
    word-wrap: break-word;
}
