/* SpotTheSplat App Store */

#sts-appstore {
    max-width: 1000px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sts-appstore-header {
    text-align: center;
    margin-bottom: 30px;
}
.sts-appstore-header h2 {
    font-size: 28px;
    color: #1e3a5f;
    margin: 0 0 8px 0;
}
.sts-appstore-header p {
    color: #555;
    font-size: 16px;
    margin: 0;
}

.sts-appstore-category {
    font-size: 18px;
    color: #1e3a5f;
    border-bottom: 2px solid #1e3a5f;
    padding-bottom: 6px;
    margin: 30px 0 16px 0;
}

.sts-appstore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* App Card */
.sts-app-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.sts-app-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sts-app-icon {
    color: #1e3a5f;
    margin-bottom: 12px;
}

.sts-app-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #1a1a1a;
}

/* Access Badge */
.sts-access-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}
.sts-access-public { background: #e8f5e9; color: #2e7d32; }
.sts-access-members { background: #e3f2fd; color: #1565c0; }
.sts-access-config { background: #fff3e0; color: #e65100; }

.sts-app-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.sts-app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.sts-app-features li {
    font-size: 13px;
    color: #555;
    padding: 3px 0 3px 20px;
    position: relative;
}
.sts-app-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.sts-app-meta {
    margin-bottom: 16px;
}
.sts-app-shortcode {
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.sts-app-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: #1e3a5f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.sts-app-btn:hover {
    background: #2c5f8a;
    color: white;
}

/* Responsive */
@media (max-width: 640px) {
    .sts-appstore-grid {
        grid-template-columns: 1fr;
    }
}
