/* assets/css/style.css - VERSÃO COMPLETA PARA TODOS OS ARQUIVOS */

:root {
    --pink-primary: #ff6b9d;
    --pink-secondary: #ff8fab;
    --pink-light: #ffb3d1;
    --dark-bg: #1a1a1a;
    --card-bg: #2d2d2d;
    --card-hover: #3d3d3d;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #444;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* ====================================
   CORES PERSONALIZADAS
   ==================================== */

.text-pink {
    color: var(--pink-primary) !important;
}

.bg-pink {
    background-color: var(--pink-primary) !important;
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

.border-pink {
    border-color: var(--pink-primary) !important;
}

.border-secondary {
    border-color: var(--border-color) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ====================================
   BOTÕES
   ==================================== */

.btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-pink {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
    color: white;
}

.btn-pink:hover {
    background-color: var(--pink-secondary);
    border-color: var(--pink-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 157, 0.3);
}

.btn-outline-pink {
    border: 1px solid var(--pink-primary);
    color: var(--pink-primary);
    background-color: transparent;
}

.btn-outline-pink:hover {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
    color: white;
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
    color: white;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger {
    background-color: var(--danger);
    border-color: var(--danger);
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

/* ====================================
   NAVEGAÇÃO
   ==================================== */

.navbar {
    background-color: var(--dark-bg) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--pink-primary) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    transition: color 0.3s ease;
    text-decoration: none;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--pink-primary) !important;
}

/* ====================================
   CARDS
   ==================================== */

.card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.card:hover {
    background-color: var(--card-hover) !important;
}

.card-header {
    background-color: var(--pink-primary) !important;
    border-bottom: 1px solid var(--pink-primary) !important;
    color: white !important;
    padding: 1rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--pink-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ====================================
   PERFIS DE USUÁRIO
   ==================================== */

.profile-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--pink-primary) !important;
    background-color: var(--card-bg) !important;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.card-img-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .card-img-top {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.rating {
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.star {
    color: #ddd;
    font-size: 14px;
    margin-right: 2px;
}

.star.active {
    color: #ffd700;
}

/* ====================================
   STORIES
   ==================================== */

.stories-container {
    margin-bottom: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 15px;
}

.stories-wrapper {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    gap: 15px;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--pink-primary);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
}

.story-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-name {
    font-size: 12px;
    color: var(--text-muted);
}

/* ====================================
   FORMULÁRIOS
   ==================================== */

.form-control {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-light) !important;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--card-bg) !important;
    border-color: var(--pink-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25) !important;
    color: var(--text-light) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-select {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-light) !important;
    border-radius: 8px;
    padding: 0.75rem;
}

.form-select:focus {
    background-color: var(--card-bg) !important;
    border-color: var(--pink-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25) !important;
    color: var(--text-light) !important;
}

.form-select option {
    background-color: var(--card-bg);
    color: var(--text-light);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-input {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
}

.form-check-label {
    color: var(--text-light);
}

/* ====================================
   ALERTAS
   ==================================== */

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: var(--success);
    color: #d4edda;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: var(--danger);
    color: #f8d7da;
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    border-color: var(--info);
    color: #d1ecf1;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: var(--warning);
    color: #fff3cd;
}

/* ====================================
   MODAL
   ==================================== */

.modal-content {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}

.modal-title {
    color: var(--text-light);
}

.btn-close {
    filter: invert(1);
}

/* ====================================
   TABELAS
   ==================================== */

.table {
    color: var(--text-light);
}

.table-dark {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.table-dark th,
.table-dark td {
    border-color: var(--border-color);
}

/* ====================================
   BADGES
   ==================================== */

.badge {
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.bg-pink {
    background-color: var(--pink-primary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.bg-info {
    background-color: var(--info) !important;
}

.bg-secondary {
    background-color: var(--border-color) !important;
}

/* ====================================
   LINKS SOCIAIS
   ==================================== */

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    margin-right: 0.5rem;
    text-decoration: none;
}

/* ====================================
   PAGINAÇÃO
   ==================================== */

.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.page-link {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    text-decoration: none;
}

.page-link:hover {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
    color: white;
}

.page-item.active .page-link {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
    color: white;
}

/* ====================================
   SCROLLBAR PERSONALIZADA
   ==================================== */

.stories-wrapper::-webkit-scrollbar {
    height: 6px;
}

.stories-wrapper::-webkit-scrollbar-track {
    background: var(--card-bg);
}

.stories-wrapper::-webkit-scrollbar-thumb {
    background: var(--pink-primary);
    border-radius: 3px;
}

.stories-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--pink-secondary);
}

/* ====================================
   UTILITÁRIOS
   ==================================== */

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* ====================================
   GRID SYSTEM
   ==================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }

.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
    padding: 0 15px;
}

/* ====================================
   RESPONSIVO
   ==================================== */

@media (max-width: 768px) {
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    
    .stories-wrapper {
        padding: 10px;
    }
    
    .story-item {
        min-width: 70px;
    }
    
    .story-circle {
        width: 50px;
        height: 50px;
    }
    
    .card-img-top {
        height: 250px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

/* ====================================
   ANIMAÇÕES
   ==================================== */

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideIn {
    from { 
        transform: translateX(-100%); 
    }
    to { 
        transform: translateX(0); 
    }
}

.profile-card {
    animation: fadeIn 0.5s ease-out;
}

.navbar {
    animation: slideIn 0.5s ease-out;
}

/* ====================================
   PLACEHOLDER PARA IMAGENS
   ==================================== */

.placeholder-img {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    height: 300px;
    border-radius: 8px;
}

.placeholder-img::before {
    content: "👤";
}

/* ====================================
   LOADING
   ==================================== */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--pink-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background-color: var(--card-bg);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer p {
    margin: 0;
    color: var(--text-muted);
    text-align: center;
}

/* ====================================
   CUSTOM SCROLLBAR
   ==================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--pink-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-secondary);
}

/* ====================================
   SOMBRAS
   ==================================== */

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.shadow-pink {
    box-shadow: 0 0.5rem 1rem rgba(255, 107, 157, 0.3);
}

/* ====================================
   HOVER EFFECTS
   ==================================== */

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-pink:hover {
    color: var(--pink-primary) !important;
    transition: color 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    transition: box-shadow 0.3s ease;
}


/* Adicionar no final do style.css */

/* Placeholder para quando não há imagem */
.profile-placeholder {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.story-placeholder {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Stories container */
.stories-container {
    margin-bottom: 2rem;
}

.stories-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.story-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff1493;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.story-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-name {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

/* Profile cards */
.profile-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.card-img-container {
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.card-img-container:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-img-container:hover .card-overlay {
    opacity: 1;
}

.rating .star {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating .star:not(.active) {
    color: #666;
}

/* Responsive stories */
@media (max-width: 768px) {
    .stories-wrapper {
        gap: 10px;
    }
    
    .story-circle {
        width: 60px;
        height: 60px;
    }
    
    .story-name {
        font-size: 0.7rem;
        max-width: 60px;
    }
}

/* Melhorar exibição das imagens */
.profile-card .card-img-top {
    transition: transform 0.3s ease;
}

.profile-card:hover .card-img-top {
    transform: scale(1.05);
}

.card-img-container {
    overflow: hidden;
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-container:hover .card-overlay {
    opacity: 1;
}

.rating .star.active {
    color: #ffd700;
}

.rating .star {
    color: #666;
}

/* Placeholder melhorado */
.profile-placeholder {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Stories melhorados */
.story-text-preview {
    color: white;
    font-size: 0.7rem;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    word-wrap: break-word;
}

.story-circle {
    border: 3px solid transparent;
    background-clip: padding-box;
}

.story-item:hover .story-circle {
    border-color: #ffd700;
    transform: scale(1.05);
}


/* Stories melhorados */
.stories-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ff1493 #333;
}

.stories-wrapper::-webkit-scrollbar {
    height: 6px;
}

.stories-wrapper::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.stories-wrapper::-webkit-scrollbar-thumb {
    background: #ff1493;
    border-radius: 3px;
}

.story-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff1493;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
}

.story-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text-preview {
    color: white;
    font-size: 0.65rem;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    word-wrap: break-word;
    line-height: 1.1;
}

.story-placeholder {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.story-name {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.story-profile-preview {
    margin-top: 5px;
    background: rgba(0,0,0,0.8);
    border-radius: 8px;
    padding: 5px;
    min-height: 35px;
    display: flex;
    align-items: center;
    width: 120px;
    margin-left: -20px;
}

.story-profile-preview small {
    font-size: 0.65rem;
    line-height: 1.2;
}

.story-profile-preview .btn {
    padding: 2px 6px;
    font-size: 0.7rem;
}

/* Animação de gradiente para stories */
.story-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ff1493);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .stories-wrapper {
        gap: 10px;
    }
    
    .story-circle {
        width: 60px;
        height: 60px;
    }
    
    .story-name {
        font-size: 0.7rem;
        max-width: 60px;
    }
    
    .story-profile-preview {
        width: 100px;
        margin-left: -20px;
        min-height: 30px;
    }
    
    .story-text-preview {
        font-size: 0.5rem;
    }
}