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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    max-width: 800px;
}

.hero-section h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.download-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 250px;
    justify-content: center;
}

.android-btn {
    background: linear-gradient(135deg, #3ddc84 0%, #2bb673 100%);
    color: white;
}

.android-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(61, 220, 132, 0.4);
}

.ios-btn {
    background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
    color: white;
}

.ios-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.4);
}

.download-btn i {
    font-size: 2rem;
}

.instructions {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instruction-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.instruction-content h4 {
    color: #555;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.instruction-content ol {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 20px;
}

.instruction-content li {
    margin-bottom: 10px;
}

.ios-instructions .info-box {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #007aff;
    color: #333;
}

.ios-instructions .info-box strong {
    color: #007aff;
}

/* iOS Info Box (Betgit Style) */
.ios-info-box {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideUpBounce 0.6s ease-out;
}

.info-bubble {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.bubble-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.bubble-text {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.share-icon {
    font-size: 20px;
    background: #007aff;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,122,255,0.3);
}

.bubble-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #f5f5f5;
}

@keyframes slideUpBounce {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .ios-info-box {
        bottom: 15px;
        left: 15px;
        right: 15px;
        transform: none;
    }
    
    .info-bubble {
        max-width: none;
        padding: 18px 20px;
    }
    
    .bubble-text {
        font-size: 15px;
    }
    
    .share-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

.footer {
    margin-top: 40px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .download-btn {
        min-width: 200px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .download-btn {
        min-width: 180px;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .download-btn i {
        font-size: 1.5rem;
    }
}
