/* LustraFans - Rede Social +18 de IA - Estilos */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.navbar-brand h1 {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e, #ff6b6b);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 800;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.turbo-badge {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.turbo-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.turbo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.user-name {
    color: #cccccc;
    font-weight: 500;
}

/* Conteúdo Principal */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Filtros */
.filters-section {
    margin-bottom: 3rem;
}

.filters-container h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.filters-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-button:hover, .filter-button.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.filter-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* Feed */
.feed-section {
    margin-top: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.3);
}

/* Header do Card */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.personagem-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.personagem-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 107, 0.5);
}

.personagem-details h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.post-time {
    color: #888888;
    font-size: 0.85rem;
}

.price-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.free-badge {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

/* Conteúdo da Mídia */
.card-media {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.content-image, .content-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locked-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.locked-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.locked-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.locked-content p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Conteúdo do Card */
.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.card-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Ações do Card */
.card-actions {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-button {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-button.liked {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border-color: transparent;
}

.unlock-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.unlock-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Feed Vazio */
.empty-feed {
    text-align: center;
    padding: 4rem 2rem;
    color: #888888;
}

.empty-feed i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #444444;
}

.empty-feed h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.empty-feed p {
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-brand h1 {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 1rem;
    }

    .filters-grid {
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-actions {
        flex-direction: column;
    }

    .action-button {
        flex: none;
    }
}

@media (max-width: 480px) {
    .filters-container h2 {
        font-size: 1.2rem;
    }

    .filter-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .card-header {
        padding: 1rem;
    }

    .card-content, .card-actions {
        padding: 1rem;
    }

    .personagem-avatar {
        width: 40px;
        height: 40px;
    }

    .personagem-details h3 {
        font-size: 1rem;
    }
} 