/* style.css */

:root {
    --dark-bg: #0a0a0f;
    --text-color: #e0e0e0;
    --accent-blue: #00bfff; /* Deep Sky Blue */
    --light-blue: #87cefa; /* Light Sky Blue */
    --border-color: rgba(0, 191, 255, 0.3);
    --glow-color: rgba(0, 191, 255, 0.7);
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: var(--dark-bg);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from lightning effect */
}

.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header/Hero Section */
.hero {
    position: relative;
    height: 500px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url('http://googleusercontent.com/image_generation_content/0'); /* Gambar yang dihasilkan */
    background-size: cover;
    background-position: center;
    overflow: hidden; /* For lightning effect */
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--accent-blue), 0 0 30px var(--light-blue);
    animation: textGlow 2s infinite alternate;
}

.hero p {
    font-size: 1.2em;
    color: var(--light-blue);
}

/* Lightning Effect (Pseudo-elements) */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    background: radial-gradient(circle at center, var(--accent-blue) 0%, transparent 70%);
    opacity: 0;
    animation: lightningFlash 4s infinite ease-out;
    border-radius: 50%;
    z-index: 0;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.hero::after {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes lightningFlash {
    0% { opacity: 0; transform: scale(0.5); }
    5% { opacity: 0.8; transform: scale(1.2); }
    10% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 0; }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px var(--accent-blue), 0 0 20px var(--light-blue);
    }
    to {
        text-shadow: 0 0 20px var(--accent-blue), 0 0 40px var(--light-blue), 0 0 60px var(--light-blue);
    }
}

/* Download Section */
.download-section {
    background-color: #1a1a20;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
    border: 1px solid var(--border-color);
}

.download-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px var(--accent-blue);
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-item {
    background-color: #2a2a30;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--glow-color);
}

.download-item a {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: var(--text-color);
}

.download-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light-blue);
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.5em;
}

.download-item p {
    font-size: 0.95em;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.download-item .file-info {
    display: block;
    font-size: 0.85em;
    color: var(--accent-blue);
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    color: #555;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1em;
    }
    .container {
        margin: 20px auto;
        padding: 0 15px;
    }
    .download-section {
        padding: 20px;
    }
    .download-item h3 {
        font-size: 1.2em;
    }
}