/* === MULTIAPPSTUDIO PRO STYLES === */


.mas-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
}

/* App Card Styles */
.mas-app-card { 
    background: #fff; 
    border-radius: 16px; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
    margin-bottom: 20px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
}

.mas-app-card:hover { 
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); 
    transform: translateY(-2px); 
}

/* App Header */
.mas-app-header { 
    display: flex; 
    gap: 20px; 
    padding: 24px; 
}

.mas-app-icon { 
    width: 120px; 
    height: 120px; 
    border-radius: 12px; 
    object-fit: cover; 
    background: #f3f4f6; 
}

.mas-app-info { 
    flex: 1; 
}

.mas-app-title { 
    font-size: 28px; 
    font-weight: 700; 
    margin: 0 0 8px 0; 
    color: #111827; 
}

.mas-app-developer { 
    font-size: 16px; 
    color: #6b7280; 
    margin-bottom: 8px; 
    font-weight: 500; 
}

.mas-app-meta { 
    font-size: 14px; 
    color: #6b7280; 
    margin: 4px 0; 
}

/* Badges */
.mas-badges { 
    display: flex; 
    gap: 8px; 
    flex-wrap: wrap; 
    margin-bottom: 12px; 
}

.mas-badge { 
    background: #e5e7eb; 
    color: #374151; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: 500; 
}

.mas-badge--featured { 
    background: #fef3c7; 
    color: #92400e; 
}

.mas-badge--category { 
    background: #dbeafe; 
    color: #1e40af; 
}

/* Buttons */
.mas-buttons { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    align-items: center; 
    margin-top: 16px; 
}

.mas-btn { 
    display: inline-block; 
    padding: 12px 24px; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: all 0.2s; 
    font-weight: 600; 
    font-size: 14px; 
}

.mas-btn:hover { 
    text-decoration: none; 
    transform: translateY(-1px); 
}

.mas-btn--primary { 
    background: #2563eb; 
    color: #fff; 
    border: 2px solid #2563eb; 
}

.mas-btn--primary:hover { 
    background: #1d4ed8; 
    border-color: #1d4ed8; 
    color: #fff; 
}

.mas-btn--secondary { 
    background: transparent; 
    color: #374151; 
    border: 2px solid #d1d5db; 
}

.mas-btn--secondary:hover { 
    background: #f9fafb; 
    border-color: #9ca3af; 
    color: #374151; 
}

/* Rating Stars */
.mas-rating { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin: 12px 0; 
}

.mas-stars { 
    display: flex; 
    gap: 4px; 
}

.mas-star { 
    width: 20px; 
    height: 20px; 
    fill: #d1d5db; 
    cursor: pointer; 
    transition: all 0.2s; 
}

.mas-star.active { 
    fill: #f59e0b; 
}

.mas-star:hover { 
    fill: #fbbf24; 
    transform: scale(1.1); 
}

.mas-rating-text { 
    font-size: 14px; 
    color: #6b7280; 
}

/* App Content */
.mas-app-content { 
    padding: 24px; 
}

.mas-app-description { 
    line-height: 1.6; 
    color: #374151; 
}

/* Screenshots */
.mas-screenshots { 
    margin: 20px 0; 
}

.mas-screenshots-grid { 
    display: flex; 
    gap: 12px; 
    overflow-x: auto; 
    padding: 10px 0; 
}

.mas-screenshot { 
    width: 200px; 
    height: 350px; 
    object-fit: cover; 
    border-radius: 8px; 
    flex-shrink: 0; 
}

/* Info Grid */
.mas-info-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 12px; 
    margin: 16px 0; 
}

.mas-info-item { 
    background: #f8f9fa; 
    padding: 12px; 
    border-radius: 8px; 
    font-size: 14px; 
}

.mas-info-item strong { 
    color: #374151; 
}

/* Version Notes */
.mas-version-notes-section { 
    margin: 24px 0; 
    padding: 20px; 
    background: #f0f9ff; 
    border-radius: 12px; 
    border-left: 4px solid #2563eb; 
}

.mas-version-notes-section h3 { 
    margin: 0 0 12px 0; 
    color: #1e40af; 
    font-size: 18px; 
}

.mas-version-notes { 
    line-height: 1.6; 
    color: #374151; 
}

.mas-version-notes p { 
    margin: 8px 0; 
}

/* Privacy Section */
.mas-privacy-section { 
    margin: 20px 0; 
    padding: 16px; 
    background: #fefce8; 
    border-radius: 8px; 
    border-left: 4px solid #eab308; 
}

.mas-privacy-section h3 { 
    margin: 0 0 8px 0; 
    color: #a16207; 
    font-size: 16px; 
}

.mas-privacy-section a { 
    color: #a16207; 
    text-decoration: none; 
    font-weight: 500; 
}

.mas-privacy-section a:hover { 
    text-decoration: underline; 
}

/* Responsive */
@media (max-width: 768px) {
    .mas-app-header { 
        flex-direction: column; 
        text-align: center;

    }
    
    
    .mas-rating-count { display: none !important; }
    
    
    
    .mas-app-icon { 
        width: 100px; 
        height: 100px; 
        margin: 0 auto; 
    }
    
    .mas-buttons { 
        justify-content: center; 
    }
}


