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

body {
    font-family: 'Arial', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Download Popup Styles */
.download-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(1px);
    animation: popupFadeIn 0.5s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 20px;
    max-width: 280px;
    width: 85%;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(139, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}


.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.popup-logo {
    height: 25px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.popup-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.popup-body {
    margin-bottom: 20px;
}


.popup-body h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.popup-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bonus-text {
    color: #FFD700 !important;
    font-weight: bold;
    font-size: 14px !important;
    margin-bottom: 15px !important;
}

.popup-buttons {
    display: flex;
    justify-content: center;
}

.download-btn {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
    font-size: 16px;
    font-weight: bold;
    color: white;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.6);
    background: linear-gradient(135deg, #A52A2A 0%, #FF1493 100%);
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text {
    font-size: 16px;
    font-weight: bold;
}

/* Responsive popup */
@media (max-width: 480px) {
    .popup-content {
        padding: 15px;
        margin: 15px;
        max-width: 260px;
    }
    
    .download-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .popup-body h2 {
        font-size: 16px;
    }
    
    .btn-text {
        font-size: 14px;
    }
    
    .popup-logo {
        height: 20px;
        max-width: 60px;
    }
    
    .popup-header h3 {
        font-size: 16px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .download-btn:hover {
        transform: none;
    }
    
    .download-btn:active {
        transform: scale(0.95);
    }
}