/* =============================================================================
   FEED PAGE SPECIFIC STYLES
   ============================================================================= */

/* Section Dividers */
.section-divider {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 128, 25, 0.3) 20%, rgba(240, 128, 25, 0.6) 50%, rgba(240, 128, 25, 0.3) 80%, transparent 100%);
}

.divider-text {
    background: rgba(255, 255, 255, 0.95);
    color: #382F2D;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(240, 128, 25, 0.2);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(56, 47, 45, 0.05);
}

.divider-text i {
    color: #F08019;
    font-size: 1rem;
}

/* Feed Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feed-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(56, 47, 45, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(240, 128, 25, 0.12);
}

.feed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(56, 47, 45, 0.12);
    border-color: rgba(240, 128, 25, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.release .card-icon {
    color: #F08019;
}

.prerelease .card-icon {
    color: #E6A445;
}

.LSRetail .card-icon {
    color: #361d5c;
}

.P365 .card-icon {
    color: #253d63;
}

.test .card-icon {
    color: #dc2626;
}

.feed-card h3 {
    color: #382F2D;
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.auth-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    margin: 1rem 0;
    display: inline-block;
}

.no-auth {
    background: rgba(240, 128, 25, 0.1);
    color: #E06B00;
    border: 1px solid rgba(240, 128, 25, 0.3);
}

.auth-required {
    background: rgba(56, 47, 45, 0.1);
    color: #382F2D;
    border: 1px solid rgba(56, 47, 45, 0.3);
}

.features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: rgba(240, 128, 25, 0.1);
    color: #382F2D;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid rgba(240, 128, 25, 0.2);
}

/* URL Builder */
.url-builder {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(240, 128, 25, 0.05);
    border-radius: 10px;
    border: 2px dashed rgba(240, 128, 25, 0.3);
}

.url-builder h3 {
    color: #382F2D;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.builder-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;    align-items: normal;
}

.input-group label {
    font-weight: 600;
    color: #382F2D;
    font-family: 'Open Sans', sans-serif;
}

.generated-url {
    margin-top: 1rem;
}

.generated-url label {
    display: block;
    font-weight: 600;
    color: #382F2D;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.5rem;
}

/* Feed Page Responsive */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .builder-controls {
        grid-template-columns: 1fr;
    }
}