/* Platform Tabs Styles */
.platform-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.tab-button:hover {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.05);
}

.tab-button.active {
    color: #4A90E2;
    border-bottom-color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
}

.tab-button i {
    font-size: 18px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

/* Tab Notice */
.tab-notice {
    background: linear-gradient(135deg, #4A90E220, #357ABD20);
    border-left: 4px solid #4A90E2;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.tab-notice p {
    margin: 0;
    color: #4A90E2;
    font-weight: 600;
}

.tab-notice i {
    margin-right: 8px;
}

/* Android Coming Soon Styles */
.android-coming-soon {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.coming-soon-icon {
    font-size: 64px;
    color: #3DDC84;
    margin-bottom: 20px;
}

.android-coming-soon h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.android-coming-soon > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.coming-soon-features {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.coming-soon-features h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.coming-soon-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coming-soon-features li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #555;
}

.coming-soon-features li:last-child {
    border-bottom: none;
}

.coming-soon-features i {
    color: #3DDC84;
    margin-right: 12px;
    font-size: 16px;
}

.notification-signup {
    background: linear-gradient(135deg, #3DDC84, #2BB673);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    color: white;
}

.notification-signup p {
    font-size: 16px;
    margin-bottom: 20px;
}

.notify-btn {
    background: white;
    color: #3DDC84;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.3);
}

.coming-soon-footer {
    color: #666;
    font-size: 14px;
}

.coming-soon-footer p {
    margin-bottom: 10px;
}

.coming-soon-footer a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}

.coming-soon-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-button {
        justify-content: center;
        border-bottom: none;
        border-radius: 8px;
        margin-bottom: 5px;
    }
    
    .tab-button.active {
        border-bottom: none;
        background: rgba(74, 144, 226, 0.1);
    }
    
    .android-coming-soon {
        padding: 40px 20px;
    }
    
    .coming-soon-icon {
        font-size: 48px;
    }
    
    .android-coming-soon h3 {
        font-size: 28px;
    }
    
    .coming-soon-features {
        padding: 20px;
    }
    
    .notification-signup {
        padding: 20px;
    }
}
