/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    color: white;
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(50%);
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.75);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255,69,0,0.6);
    animation: fadeIn 2s ease-in-out;
}

/* Banner image */
.banner {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.banner-img {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255,69,0,0.7);
    animation: fadeIn 2s ease-in-out;
}

/* Main content */
.description {
    margin: 20px 0;
    font-size: 1.1em;
    color: #fffacd;
}

/* Download button */
.download-btn {
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(45deg,#ff4500,#ff6347,#ff4500);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px #ff4500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #ff6347, 0 0 60px #ff4500;
}

/* Shine effect */
.download-btn .shine {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(25deg);
    transition: all 0.5s;
}

.download-btn:hover .shine {
    left: 100%;
    top: 100%;
}

/* Footer / Notes */
.note {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ffa500;
}

.note a {
    color: #ff4500;
    text-decoration: none;
    font-weight: bold;
}

.status-text {
    margin-top: 30px;
    font-size: 1em;
    color: #ffb347;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(60%); }
    100% { opacity: 1; transform: translateY(50%); }
}