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

body {
    font-family: 'Poppins', sans-serif;
    background: url(\'background.gif\');   background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    margin: 0 auto;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc04, #ea4335);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.app-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.app-icon {
    flex-shrink: 0;
}

.app-icon img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.app-icon img:hover {
    transform: scale(1.05);
}

.app-details {
    text-align: left;
    flex: 1;
}

.app-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.app-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.5;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.file-type {
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc04, #ea4335);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
}

.download-btn {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.download-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.download-btn:hover .download-icon {
    transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .app-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .app-details {
        text-align: center;
    }
    
    .app-icon img {
        width: 70px;
        height: 70px;
    }
    
    .download-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    
    .app-name {
        font-size: 1.2rem;
    }
    
    .app-description {
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .file-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

