/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    border-bottom: 4px solid #E60012;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: #E60012;
    letter-spacing: -0.5px;
}

.status {
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #28a745;
    background: #eaffea;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #b1dfbb;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(40,167,69,0.5); }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 5px rgba(40,167,69,0); }
    100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.platforms {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* HUGE Download Button in the center */
.visible-dl-btn {
    background-color: #E60012;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    border: 3px solid #ff3344;
    padding: 20px 50px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(230, 0, 18, 0.6);
    transition: all 0.2s;
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
}

.visible-dl-btn:hover {
    background-color: #cc0010;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(230, 0, 18, 0.8);
}

.visible-dl-btn:active {
    transform: translateY(2px) scale(0.98);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.feature h3 {
    color: #E60012;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

footer {
    background: #111;
    color: #666;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
}

footer strong {
    color: #999;
}

/* Modals */
.hidden {
    display: none !important;
}

#modal-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-top: 8px solid #E60012;
}

.modal h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 900;
}

.modal p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 1.1rem;
}

.progress-bar-container {
    width: 100%;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

#progress-bar {
    width: 0%;
    height: 100%;
    background-color: #E60012;
    transition: width 0.3s ease;
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
}

#status-text {
    font-weight: 800;
    color: #E60012;
    margin-bottom: 0;
}

.verify-btn {
    background-color: #E60012;
    color: white;
    font-size: 1.3rem;
    font-weight: 900;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
    box-shadow: 0 4px 15px rgba(230,0,18,0.4);
}

.verify-btn:hover {
    background-color: #cc0010;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.8rem; }
    .hero h2 { font-size: 1.6rem; }
    .visible-dl-btn { font-size: 1.4rem; padding: 18px; }
    .feature { width: 100%; }
}
