.users-main {
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.users-container {
    max-width: 1200px;
    margin: 2rem auto;
}

.users-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.search-section input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background: var(--bg-color);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.search-section input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.user-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.user-card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #00d4ff;
    margin: 0 auto 1rem;
}

.user-card-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.user-card-uid {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.user-card-stats {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.user-stat {
    text-align: center;
}

.user-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00d4ff;
}

.user-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.follow-btn {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
}

.follow-btn.following {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

.subscription-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.sub-none {
    background: rgba(128, 128, 128, 0.2);
    color: #888;
}

.sub-active {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.sub-forever {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}
